snowflake/hosts/sakura/home.nix

19 lines
255 B
Nix
Raw Normal View History

2023-05-12 05:26:48 -04:00
{
config,
pkgs,
...
}: {
imports = [
../../home
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "notoh";
homeDirectory = "/home/notoh";
stateVersion = "23.05";
};
}