zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit 2041df171c86e76480f4144ec2f804ecdcdd0a3e
parent e8707b5be4bc3c4ab59b4cd294b56d7bb4ff8f0b
Author: Katja (zaphyra) <git@ctu.cx>
Date: Wed, 4 Jun 2025 12:10:30 +0200

config/nixos/modules/filesystem/rootDisk: rename zfs volume `data/persist` to `data/system`
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/config/nixos/modules/filesystem/rootDisk.nix b/config/nixos/modules/filesystem/rootDisk.nix
@@ -96,10 +96,6 @@ in
 
           services.zfs.autoScrub.enable = true;
 
-          # katja: for some unknown reason userborn doesn't work when zfs is usded - needs to be investigated later
-          services.userborn.enable = lib.mkForce false;
-
-
           boot = lib.mkMerge [
             (
               lib.mkIf cfg.encrypt {

@@ -259,7 +255,7 @@ in
                   )
                   (
                     lib.mkIf cfg.parts.system {
-                      "data/persist" = {
+                      "data/system" = {
                         type = "zfs_fs";
                         options = {
                           devices = "off";