19 lines
355 B
Nix
19 lines
355 B
Nix
{ config, lib, pkgs, ... }: {
|
|
nix = {
|
|
settings = {
|
|
auto-optimise-store = true;
|
|
allowed-users = [ "@wheel" ];
|
|
};
|
|
gc = {
|
|
automatic = true;
|
|
dates = "daily";
|
|
};
|
|
package = pkgs.nixUnstable;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|