snowflake/hosts/sutakku/home.nix

17 lines
234 B
Nix
Raw Normal View History

2023-02-27 21:38:27 -05:00
{config, pkgs, ...}:
{
imports = [
../../home
2023-02-27 21:38:27 -05:00
];
2023-03-07 16:08:20 -05:00
2023-02-27 21:38:27 -05:00
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "oh";
homeDirectory = "/home/oh";
stateVersion = "23.05";
};
}