diff --git a/hosts/desktop.nix b/hosts/desktop.nix index 3a5c991..833eee9 100644 --- a/hosts/desktop.nix +++ b/hosts/desktop.nix @@ -14,7 +14,7 @@ boot.initrd.luks.devices = { root = { - device = "/dev/sda2"; + device = "/dev/sda1"; preLVM = true; }; }; diff --git a/hosts/laptop.nix b/hosts/laptop.nix index 56eab20..d4c7a2e 100644 --- a/hosts/laptop.nix +++ b/hosts/laptop.nix @@ -15,7 +15,7 @@ boot.initrd.luks.devices = { root = { - device = "/dev/sda2"; + device = "/dev/sda1"; preLVM = true; }; }; diff --git a/hosts/vm.nix b/hosts/vm.nix index 153f0a3..1a7b2f8 100644 --- a/hosts/vm.nix +++ b/hosts/vm.nix @@ -9,7 +9,7 @@ # Disk encryption setup boot.initrd.luks.devices = { root = { - device = "/dev/sda2"; + device = "/dev/sda1"; preLVM = true; }; };