fix: map home persistence to zfs mountpoints

This commit is contained in:
514fpv 2024-01-09 16:48:49 +08:00
parent 777d86ea2f
commit dc78bb3426
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -124,6 +124,12 @@ in {
neededForBoot = true;
}) 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: {
imports = cfg.homeModules;
home.stateVersion = "23.11";