18 lines
317 B
Nix
18 lines
317 B
Nix
{ inputs, ... }:
|
|
{
|
|
nix = {
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
registry.nixpkgs.flake = inputs.nixpkgs;
|
|
};
|
|
|
|
nixpkgs.overlays = with inputs; [
|
|
nix.overlays.default
|
|
(import ./overlay.nix)
|
|
];
|
|
|
|
# Allow all the things
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|