From df32116996ceb55a485f2c1558f1147a73650721 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Sat, 25 Jan 2020 08:52:23 +1300 Subject: [PATCH] mobi: fix volume group mistake --- configs/mobi/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/mobi/hardware-configuration.nix b/configs/mobi/hardware-configuration.nix index 9c4b32a..f24020c 100644 --- a/configs/mobi/hardware-configuration.nix +++ b/configs/mobi/hardware-configuration.nix @@ -36,7 +36,7 @@ # lvm volume group # ---------------- boot.initrd.luks.devices = [{ - name = "secure_vg"; + name = "mobi"; device = "/dev/disk/by-uuid/e138095f-c703-4dea-bb1c-bf888b8e1b81"; preLVM = true; }]; @@ -45,7 +45,7 @@ # ---- fileSystems."/" = { options = [ "noatime" "nodiratime" "discard" ]; - device = "/dev/secure_vg/root"; + device = "/dev/mobi/root"; fsType = "ext4"; };