summaryrefslogtreecommitdiff
path: root/modules/hosts/poweredge/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hosts/poweredge/configuration.nix')
-rw-r--r--modules/hosts/poweredge/configuration.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/hosts/poweredge/configuration.nix b/modules/hosts/poweredge/configuration.nix
deleted file mode 100644
index 08e392d..0000000
--- a/modules/hosts/poweredge/configuration.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, lib, pkgs, ... }: {
- imports = [ ./hardware-configuration.nix ];
-
- # ZFS bootloader
- bootloader.loader = "grub";
- bootloader.mode = "efi";
- boot.loader.grub = {
- zfsSupport = true;
- efiInstallAsRemovable = true;
- mirroredBoots = [
- { devices = [ "nodev" ]; path = "/boot"; }
- ];
- };
-
- # Disable suspend
- suspend.enable = false;
-
- system.stateVersion = "25.05";
-}