snowflake/hosts/sutakku/home.nix
2023-02-27 21:38:27 -05:00

16 lines
No EOL
247 B
Nix

{config, pkgs, ...}:
{
imports = [
../../modules/common.nix
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "oh";
homeDirectory = "/home/oh";
stateVersion = "23.05";
};
}