diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-02-03 12:58:47 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-02-03 12:58:47 +0530 |
commit | d5c0a5ff4dc3936443d6bd410c6e5f71c24f3be2 (patch) | |
tree | ed5fe0b81d92faed95bbf4bfd323b94a81d42220 /hosts | |
parent | 4e20d555b2c0019cae4ec6adff89177510f2770f (diff) |
boot: move bootloader implementation to hardware-configuration
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/cez/hardware-configuration.nix | 8 | ||||
-rw-r--r-- | hosts/dspace/hardware-configuration.nix | 23 | ||||
-rw-r--r-- | hosts/fscusat/hardware-configuration.nix | 23 | ||||
-rw-r--r-- | hosts/kay/hardware-configuration.nix | 5 |
4 files changed, 42 insertions, 17 deletions
diff --git a/hosts/cez/hardware-configuration.nix b/hosts/cez/hardware-configuration.nix index a1107c1..19313e5 100644 --- a/hosts/cez/hardware-configuration.nix +++ b/hosts/cez/hardware-configuration.nix @@ -4,6 +4,11 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelModules = [ "kvm-amd" ]; initrd = { availableKernelModules = [ @@ -15,7 +20,8 @@ "sdhci_pci" ]; - luks.devices."crypt".device = "/dev/disk/by-uuid/84acd784-caad-41a1-a2e4-39468d01fefd"; + luks.devices."crypt".device = + "/dev/disk/by-uuid/84acd784-caad-41a1-a2e4-39468d01fefd"; }; }; diff --git a/hosts/dspace/hardware-configuration.nix b/hosts/dspace/hardware-configuration.nix index c355e8b..aaad3b7 100644 --- a/hosts/dspace/hardware-configuration.nix +++ b/hosts/dspace/hardware-configuration.nix @@ -3,14 +3,21 @@ { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - boot.initrd.availableKernelModules = [ - "ata_piix" - "uhci_hcd" - "virtio_pci" - "virtio_scsi" - "sd_mod" - "sr_mod" - ]; + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + + initrd.availableKernelModules = [ + "ata_piix" + "uhci_hcd" + "virtio_pci" + "virtio_scsi" + "sd_mod" + "sr_mod" + ]; + }; fileSystems = { "/" = { diff --git a/hosts/fscusat/hardware-configuration.nix b/hosts/fscusat/hardware-configuration.nix index 3913e1e..8bb54ed 100644 --- a/hosts/fscusat/hardware-configuration.nix +++ b/hosts/fscusat/hardware-configuration.nix @@ -3,14 +3,21 @@ { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - boot.initrd.availableKernelModules = [ - "ata_piix" - "uhci_hcd" - "virtio_pci" - "virtio_scsi" - "sd_mod" - "sr_mod" - ]; + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + + initrd.availableKernelModules = [ + "ata_piix" + "uhci_hcd" + "virtio_pci" + "virtio_scsi" + "sd_mod" + "sr_mod" + ]; + }; fileSystems = { "/" = { diff --git a/hosts/kay/hardware-configuration.nix b/hosts/kay/hardware-configuration.nix index 3299f3f..306e9ba 100644 --- a/hosts/kay/hardware-configuration.nix +++ b/hosts/kay/hardware-configuration.nix @@ -4,6 +4,11 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelModules = [ "kvm-intel" ]; blacklistedKernelModules = [ "nouveau" ]; initrd.availableKernelModules = [ |