dots/users/price/conf/nix/default.nix
Price Hiller 06f2309e9f
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 38s
feat(hosts/orion): use cachix substituters
2024-10-28 16:13:34 -05:00

26 lines
543 B
Nix

{ pkgs, ... }:
{
nix = {
package = pkgs.nix;
gc = {
automatic = true;
};
settings = {
experimental-features = [
"nix-command"
"flakes"
];
substituters = [
"https://nix-community.cachix.org"
"https://cache.nixos.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
auto-optimise-store = true;
use-xdg-base-directories = true;
trusted-users = [ "@wheel" ];
};
};
}