diff options
author | ene <ene@sils.li> | 2023-03-19 17:58:43 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-19 17:58:43 +0100 |
commit | 7881651fba877dd9a79c4c32422cd7305f0306b5 (patch) | |
tree | 83aa5d1f181c54f74ab4dff9ac14578c0836f023 | |
parent | Fix(system/services/minecraft): Remove to make compile (diff) | |
download | nixos-server-7881651fba877dd9a79c4c32422cd7305f0306b5.tar.gz nixos-server-7881651fba877dd9a79c4c32422cd7305f0306b5.zip |
Fix(system/hardware): Use actually needed modules and UUID
The old values did work, but these should just make things a bit clearer.
Diffstat (limited to '')
-rw-r--r-- | hosts/server1/configuration.nix | 2 | ||||
-rw-r--r-- | system/hardware/default.nix | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix index 694b6b4..ad3d8a3 100644 --- a/hosts/server1/configuration.nix +++ b/hosts/server1/configuration.nix @@ -10,7 +10,7 @@ networking.hostName = "server1"; networking.domain = "vhack.eu"; - system.fileSystemLayouts.mainDisk = "/dev/vda3"; + system.fileSystemLayouts.mainDisk = "/dev/disk/by-uuid/7d960eb9-9334-4aef-9f7c-9a908a91a6db"; system.stateVersion = "22.11"; } diff --git a/system/hardware/default.nix b/system/hardware/default.nix index c4c7dc9..9fabafe 100644 --- a/system/hardware/default.nix +++ b/system/hardware/default.nix @@ -4,6 +4,6 @@ (modulesPath + "/profiles/headless.nix") ]; boot.loader.grub.device = "/dev/vda"; - boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"]; - boot.initrd.kernelModules = ["nvme" "btrfs"]; + boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"]; + boot.initrd.kernelModules = []; } |