nixconfig/modules/home/base/default.nix
2023-11-08 17:15:32 +01:00

13 lines
252 B
Nix

{ config, ... }: {
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "${config.homecfg.username}";
homeDirectory = "/home/${config.homecfg.username}";
stateVersion = "23.05";
};
}