2024-12-06 23:56:42 -06:00
|
|
|
{ inputs, ... }:
|
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-01 14:03:50 -05:00
|
|
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
2024-05-03 14:35:00 -05:00
|
|
|
settings = {
|
|
|
|
experimental-features = [
|
2024-11-06 16:01:31 -06:00
|
|
|
"pipe-operators"
|
2024-05-03 14:35:00 -05:00
|
|
|
"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" ];
|
2024-10-28 16:13:34 -05:00
|
|
|
substituters = [
|
|
|
|
"https://nix-community.cachix.org"
|
|
|
|
"https://cache.nixos.org"
|
|
|
|
];
|
|
|
|
trusted-public-keys = [
|
|
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
2024-10-30 15:09:23 -05:00
|
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
2024-10-28 16:13:34 -05:00
|
|
|
];
|
2024-05-03 14:35:00 -05:00
|
|
|
};
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
};
|
2024-12-06 23:56:42 -06:00
|
|
|
}
|