flake/darwin/profiles/core/default.nix

16 lines
310 B
Nix
Raw Normal View History

2023-12-13 11:02:11 +00:00
{inputs, ...}: {
2023-11-17 05:38:25 +00:00
imports = [
../../modules
./nix
2023-12-13 11:02:11 +00:00
./anti-features.nix
inputs.home-manager.darwinModules.home-manager
2023-11-17 05:38:25 +00:00
];
2023-12-13 11:02:11 +00:00
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs;}; # ??? isnt specialArgs imported by default ???
};
2023-11-17 05:38:25 +00:00
}