snowflake/hosts/yuki/home.nix
2023-06-03 22:53:57 -04:00

20 lines
274 B
Nix

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