snowflake/hosts/sutakku/home.nix

19 lines
249 B
Nix
Raw Normal View History

2023-02-27 21:38:27 -05:00
{
2023-04-23 17:45:37 -04:00
config,
pkgs,
...
}: {
imports = [
../../home
];
2023-02-27 21:38:27 -05:00
2023-04-23 17:45:37 -04:00
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
2023-02-27 21:38:27 -05:00
home = {
username = "oh";
homeDirectory = "/home/oh";
stateVersion = "23.05";
};
2023-04-23 17:45:37 -04:00
}