dots/users/price/conf/nix/default.nix

19 lines
313 B
Nix
Raw Normal View History

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