fix: map home persistence to zfs mountpoints
This commit is contained in:
parent
777d86ea2f
commit
dc78bb3426
|
@ -124,6 +124,12 @@ in {
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
}) cfg.profiles;
|
}) cfg.profiles;
|
||||||
|
|
||||||
|
global.fs.zfs.mountpoints = mapAttrs'
|
||||||
|
(name: opts: nameValuePair
|
||||||
|
"/nix/persist/home/${name}"
|
||||||
|
"home/${name}")
|
||||||
|
(filterAttrs (n: _: n != "root") config.users.profiles);
|
||||||
|
|
||||||
home-manager.users = mapAttrs (name: opts: {
|
home-manager.users = mapAttrs (name: opts: {
|
||||||
imports = cfg.homeModules;
|
imports = cfg.homeModules;
|
||||||
home.stateVersion = "23.11";
|
home.stateVersion = "23.11";
|
||||||
|
|
Loading…
Reference in a new issue