aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/server1
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/server1')
-rw-r--r--hosts/server1/configuration.nix3
-rw-r--r--hosts/server1/hardware.nix9
2 files changed, 11 insertions, 1 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix
index 694b6b4..891c5dc 100644
--- a/hosts/server1/configuration.nix
+++ b/hosts/server1/configuration.nix
@@ -1,6 +1,7 @@
{pkgs, ...}: {
imports = [
./networking.nix # network configuration that just works
+ ./hardware.nix
../../system
];
@@ -10,7 +11,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/hosts/server1/hardware.nix b/hosts/server1/hardware.nix
new file mode 100644
index 0000000..9fabafe
--- /dev/null
+++ b/hosts/server1/hardware.nix
@@ -0,0 +1,9 @@
+{modulesPath, ...}: {
+ imports = [
+ (modulesPath + "/profiles/qemu-guest.nix")
+ (modulesPath + "/profiles/headless.nix")
+ ];
+ boot.loader.grub.device = "/dev/vda";
+ boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"];
+ boot.initrd.kernelModules = [];
+}