fix: fixed file system resolution

This commit is contained in:
Leyla Becker 2025-11-23 11:51:53 -06:00
parent 5dc602339c
commit 2922114367
5 changed files with 36 additions and 74 deletions

View file

@ -404,10 +404,7 @@ in {
# sops age key needs to be available to pre persist for user generation
storage.datasets.local."system/sops" = {
type = "zfs_fs";
mount = {
enable = true;
mountPoint = SOPS_AGE_KEY_DIRECTORY;
};
mount = SOPS_AGE_KEY_DIRECTORY;
atime = "off";
relatime = "off";
};
@ -417,10 +414,7 @@ in {
builtins.map (user: {
"home/${user.name}" = {
type = "zfs_fs";
mount = {
enable = true;
mountPoint = "/home/${user.name}";
};
mount = "/home/${user.name}";
snapshot.autoSnapshot = true;
};
})
@ -432,10 +426,7 @@ in {
builtins.map (user: {
"home/${user.name}" = {
type = "zfs_fs";
mount = {
enable = true;
mountPoint = "/home/${user.name}";
};
mount = "/home/${user.name}";
snapshot.blankSnapshot = true;
};
})