nixconfig/modules/home/base/default.nix
2023-11-17 03:29:35 +01:00

13 lines
257 B
Nix

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