Use custom grub

This commit is contained in:
Invariantspace 2023-10-27 15:20:59 -07:00
parent 01610722e1
commit 445e4b5743
5 changed files with 57 additions and 38 deletions

View file

@ -12,7 +12,7 @@
sops-nix.url = "github:Mic92/sops-nix";
};
outputs = inputs@{ self, darwin, nixpkgs, ... }:
outputs = inputs@{ self, darwin, nixpkgs, nix-custom, ... }:
let
darwinConfigDir = ./darwin;
linuxConfigDir = ./linux;
@ -33,7 +33,10 @@
auto-optimise-store = true;
};
};
nixpkgs.config.allowUnfree = true;
nixpkgs = {
config.allowUnfree = true;
overlays = [ nix-custom.overlay ];
};
})
];
specialArgs = { inherit inputs; };