dots/hosts/orion/modules/nix.nix
Price Hiller 4e563e3ed9
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m1s
feat(host/orion): set nixPath to flake nixpkgs input
2024-07-01 14:03:50 -05:00

21 lines
366 B
Nix

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