24 lines
404 B
Nix
24 lines
404 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
useDaemon = true;
|
|
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
nixpkgs = {
|
|
config = {allowUnfree = true;};
|
|
overlays = [
|
|
(import ../../overlay)
|
|
inputs.musicutil.overlay
|
|
inputs.deploy-rs.overlay
|
|
];
|
|
};
|
|
}
|