snowflake/hosts/hime/home.nix

19 lines
289 B
Nix
Raw Normal View History

2023-02-27 05:39:25 -05:00
{
2023-04-23 17:45:37 -04:00
config,
pkgs,
2023-05-15 05:39:33 -04:00
lib,
2023-04-23 17:45:37 -04:00
...
}: {
imports = [
../../home
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
2023-02-27 05:39:25 -05:00
home = {
2023-05-15 05:39:33 -04:00
username = lib.mkDefault "notoh";
homeDirectory = lib.mkDefault "/home/notoh";
2023-02-27 05:39:25 -05:00
stateVersion = "23.05";
};
2023-04-23 17:45:37 -04:00
}