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