dots/users/price/conf/nix/default.nix
Price Hiller 8149576db5
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m6s
refactor(hm/price): ensure as many dirs as possible use xdg specification
2024-08-29 22:32:16 -05:00

19 lines
313 B
Nix

{ pkgs, ... }:
{
nix = {
package = pkgs.nix;
gc = {
automatic = true;
};
settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
use-xdg-base-directories = true;
trusted-users = [ "@wheel" ];
};
};
}