Files
nix-config/modules/hm/core/hm.nix
2026-05-06 19:48:33 +05:30

14 lines
270 B
Nix

{
flake.modules.homeManager.core =
{ userName, ... }:
{
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
home = {
username = "${userName}";
homeDirectory = "/home/${userName}";
};
};
}