nixos-config/modules/nixos/system/home-manager.nix
2025-10-22 18:54:16 -04:00

16 lines
No EOL
342 B
Nix
Executable file

{ inputs, config, ... }:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "bak";
extraSpecialArgs = { inherit inputs; };
users.wo2w.home = {
username = "wo2w";
homeDirectory = "/home/wo2w";
};
};
}