about summary refs log tree commit diff
path: root/machines/profpatsch
diff options
context:
space:
mode:
Diffstat (limited to 'machines/profpatsch')
-rw-r--r--machines/profpatsch/leguin.nix21
1 files changed, 11 insertions, 10 deletions
diff --git a/machines/profpatsch/leguin.nix b/machines/profpatsch/leguin.nix
index bc9fed67..c1c6f195 100644
--- a/machines/profpatsch/leguin.nix
+++ b/machines/profpatsch/leguin.nix
@@ -35,17 +35,18 @@ in
 
     };
 
-    boot.loader.grub.device = "/dev/sda";
+    boot.initrd.luks.devices.cryptroot.device = "/dev/disk/by-label/root";
 
-    fileSystems = {
-      "/" = {
-        device = "/dev/sda3";
-        fsType = "ext4";
-      };
-      "/boot" = {
-        device = "/dev/sda2";
-        fsType = "ext4";
-      };
+    fileSystems."/" = {
+      device = "/dev/disk/by-label/nixos";
+      fsType = "btrfs";
+      options = [ "ssd" "subvol=/root" ];
+    };
+
+    fileSystems."/boot" = {
+      device = "/dev/disk/by-label/BOOT";
+      fsType = "vfat";
+      options = ["nofail"];
     };
 
     vuizvui.user.profpatsch.server.sshPort = 7001;