xin/configs/nix.nix

22 lines
476 B
Nix

{ pkgs, inputs, ... }:
{
nix = {
package = inputs.unstable.legacyPackages.${pkgs.system}.nixVersions.nix_2_21;
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 10d";
};
extraOptions = ''
experimental-features = nix-command flakes
'';
settings.auto-optimise-store = true;
settings = {
sandbox = true;
trusted-users = [ "@wheel" ];
allowed-users = [ "root" "qbit" ];
};
};
}