summary refs log tree commit diff stats
path: root/hosts/server1/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/server1/configuration.nix')
-rw-r--r--hosts/server1/configuration.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix
index 729ef0f..891c5dc 100644
--- a/hosts/server1/configuration.nix
+++ b/hosts/server1/configuration.nix
@@ -1,10 +1,9 @@
 {pkgs, ...}: {
   imports = [
     ./networking.nix # network configuration that just works
+    ./hardware.nix
 
     ../../system
-
-    ../../services
   ];
 
   boot.cleanTmpDir = true;
@@ -12,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";
 }