19 lines
345 B
Nix
19 lines
345 B
Nix
{ inputs, ... }: {
|
|
imports = [
|
|
./nixpkgs.nix
|
|
];
|
|
|
|
nix = {
|
|
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 14d";
|
|
};
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
};
|
|
|
|
}
|