From 033768feae24a2108c8a7d0d218b612402e73022 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 21 Mar 2025 01:45:45 +0000 Subject: [PATCH] Corrected root filesystem partition in host config files --- hosts/desktop.nix | 2 +- hosts/laptop.nix | 2 +- hosts/vm.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; }; };