2023-07-26 13:14:00 -06:00
|
|
|
{ inputs, ... }:
|
|
|
|
{
|
|
|
|
nix = {
|
|
|
|
extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
|
|
|
registry.nixpkgs.flake = inputs.nixpkgs;
|
2023-07-27 21:37:11 -06:00
|
|
|
settings = {
|
|
|
|
keep-outputs = true;
|
|
|
|
keep-derivations = true;
|
|
|
|
};
|
2023-07-26 13:14:00 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs.overlays = with inputs; [
|
2023-07-26 13:19:38 -06:00
|
|
|
nix.overlays.default
|
2023-07-26 13:14:00 -06:00
|
|
|
(import ./overlay.nix)
|
|
|
|
];
|
|
|
|
|
|
|
|
# Allow all the things
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
}
|