Add grav patches

This commit is contained in:
muon 2024-12-30 10:20:18 +00:00
parent 1feb13e852
commit c02b1d5380
2 changed files with 32 additions and 12 deletions

View file

@ -1,12 +1,13 @@
{ inputs, system, ... }: {
mkHost = host: inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system; };
{ inputs, system, pkgs, ... }: {
mkHost = host:
inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system pkgs; };
modules = [
host
./modules/nixos
inputs.home-manager.nixosModules.default
inputs.stylix.nixosModules.stylix
];
};
modules = [
host
./modules/nixos
inputs.home-manager.nixosModules.default
inputs.stylix.nixosModules.stylix
];
};
}