diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-25 01:34:17 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-25 01:34:17 +0100 |
commit | 50672e10e87fa90f9ded5065aa4bc4ce0afaf730 (patch) | |
tree | d7002595afb6a6061fc1af6632fe05f4cfc9d9e7 /hosts/by-name/server2/hardware.nix | |
parent | --wip-- [skip ci] (diff) | |
download | nixos-server-50672e10e87fa90f9ded5065aa4bc4ce0afaf730.tar.gz nixos-server-50672e10e87fa90f9ded5065aa4bc4ce0afaf730.zip |
[WIP] Setup `deploy-rs` and add networking detection script
Diffstat (limited to 'hosts/by-name/server2/hardware.nix')
-rw-r--r-- | hosts/by-name/server2/hardware.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/by-name/server2/hardware.nix b/hosts/by-name/server2/hardware.nix index 9abc64c..a6e4e40 100644 --- a/hosts/by-name/server2/hardware.nix +++ b/hosts/by-name/server2/hardware.nix @@ -9,6 +9,7 @@ # FIXME: Find a better way to specify the disk disk = "/dev/vda"; }; + boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"]; - boot.initrd.kernelModules = []; + nixpkgs.hostPlatform = "x86_64-linux"; } |