2024-07-29 18:36:50 -05:00
|
|
|
{ inputs, pkgs, ... }:
|
2024-05-03 14:35:00 -05:00
|
|
|
|
|
|
|
{
|
2024-07-05 04:02:19 -05:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
2024-05-03 14:35:00 -05:00
|
|
|
nix = {
|
2024-07-29 18:36:50 -05:00
|
|
|
package = pkgs.nixVersions.latest;
|
2024-07-01 14:03:50 -05:00
|
|
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
2024-05-03 14:35:00 -05:00
|
|
|
settings = {
|
|
|
|
experimental-features = [
|
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
|
|
|
auto-optimise-store = true;
|
2024-08-29 22:32:16 -05:00
|
|
|
use-xdg-base-directories = true;
|
2024-05-03 14:35:00 -05:00
|
|
|
trusted-users = [ "@wheel" ];
|
|
|
|
};
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|