13 lines
229 B
Nix
13 lines
229 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ../../home ];
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "notoh";
|
|
homeDirectory = "/home/notoh";
|
|
stateVersion = "23.05";
|
|
};
|
|
}
|