snowflake/hosts/hime/home.nix

18 lines
248 B
Nix
Raw Normal View History

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