flake/darwin/profiles/common/core/default.nix

17 lines
351 B
Nix
Raw Normal View History

2023-12-13 11:02:11 +00:00
{inputs, ...}: {
2023-11-17 05:38:25 +00:00
imports = [
./nix
2023-12-13 11:02:11 +00:00
./anti-features.nix
2024-01-03 14:41:18 +00:00
./networking.nix
2023-12-13 11:02:11 +00:00
2024-01-03 14:41:18 +00:00
inputs.self.darwinModules.default
2023-12-13 11:02:11 +00:00
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
}