flake/nixos/flake-modules/home-manager.nix
2023-11-17 13:38:25 +08:00

9 lines
248 B
Nix

{inputs, ...}: {
imports = [inputs.home-manager.nixosModules.home-manager];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs;}; # ??? isnt specialArgs imported by default ???
};
}