From 397b1a7ff02f06de7c032e34624eb23cf9258a69 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 5 Nov 2025 21:40:56 -0600 Subject: [PATCH] test: impermanence --- systems/ceres/config/filesystem.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/systems/ceres/config/filesystem.nix b/systems/ceres/config/filesystem.nix index 2492e6d..a4d1ec0 100755 --- a/systems/ceres/config/filesystem.nix +++ b/systems/ceres/config/filesystem.nix @@ -7,8 +7,8 @@ let inherit (flake.config.people) user0; - rootDevice = "/dev/disk/by-uuid/df9868a4-2dd1-40d5-9f5f-c56ceac62216"; - bootDevice = "/dev/disk/by-uuid/DF19-AD99"; + rootDevice = "/dev/disk/by-label/root"; + bootDevice = "/dev/disk/by-label/BOOT"; in { fileSystems = { @@ -28,12 +28,12 @@ in ]; }; - "/persistent" = { + "/persist" = { device = rootDevice; fsType = "btrfs"; neededForBoot = true; options = [ - "subvol=persistent" + "subvol=persist" ]; };