feat: made datasets build

This commit is contained in:
Leyla Becker 2025-11-10 15:49:12 -06:00
parent 61eef3067e
commit 8aa984a389
4 changed files with 32 additions and 24 deletions

View file

@ -415,7 +415,6 @@ in {
relatime = "off";
};
}
# Create ZFS datasets for each normal user
(lib.mkMerge (
builtins.map (user: {
"local/home/${user.name}" = {
@ -426,13 +425,6 @@ in {
};
snapshot.blankSnapshot = true;
};
"persist/home/${user.name}" = {
type = "zfs_fs";
mount = {
enable = true;
mountPoint = "/persist/home/${user.name}";
};
};
})
normalUsers
))