dots/hosts/orion/modules/nix.nix

22 lines
403 B
Nix
Raw Normal View History

{ inputs, ... }:
2024-05-03 14:35:00 -05:00
{
nixpkgs.config.allowUnfree = true;
2024-05-03 14:35:00 -05:00
nix = {
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
2024-05-03 14:35:00 -05:00
settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
}