infra/module/aspect/base/home-manager.nix
2025-12-01 13:23:24 +07:00

17 lines
No EOL
390 B
Nix

{
den.aspects = {
base = {
homeManager =
{ config, ... }:
{
home.homeDirectory = "/home/${config.home.username}";
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
};
};
};
}
/*
https://ohai.social/@rycee/112502545466617762
https://github.com/nix-community/home-manager/issues/5452
*/