18 lines
430 B
Nix
18 lines
430 B
Nix
|
{ inputs, config, lib, ... }: {
|
||
|
nix = {
|
||
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||
|
extraOptions = lib.optionalString
|
||
|
(lib.versionAtLeast config.nix.package.version "2.4") ''
|
||
|
experimental-features = nix-command flakes
|
||
|
'';
|
||
|
};
|
||
|
nixpkgs = {
|
||
|
config = { allowUnfree = true; };
|
||
|
overlays = [
|
||
|
(import ../../overlay)
|
||
|
inputs.musicutil.overlay
|
||
|
inputs.deploy-rs.overlay
|
||
|
];
|
||
|
};
|
||
|
}
|