Files
nix-config/modules/hm/core/hm.nix
2026-09-11 01:59:55 +05:30

12 lines
246 B
Nix

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