13 lines
257 B
Nix
13 lines
257 B
Nix
{ lib, config, ... }: {
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "${config.usercfg.username}";
|
|
homeDirectory = "/home/${config.usercfg.username}";
|
|
|
|
stateVersion = "23.11";
|
|
};
|
|
}
|