13 lines
252 B
Nix
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";
|
||
|
};
|
||
|
}
|