1
Fork 0
nixos-system-config/home/default.nix

27 lines
446 B
Nix
Raw Normal View History

{ config, ... }:
{
users.users.hu = {
isNormalUser = true;
extraGroups = [ "wheel" ];
2024-07-25 22:12:51 +02:00
hashedPasswordFile = "/nix/config/secrets/pass";
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.hu = {
home.username = "hu";
home.homeDirectory = "/home/hu";
home.stateVersion = config.system.stateVersion;
xdg.enable = true;
};
};
imports = [
./persist.nix
];
}