blob: c828a16a3d39154be4d850a0260d6fa969b0ba51 (
plain) (
tree)
|
|
{ pkgs, ... }: {
nix = {
package = pkgs.nixFlakes;
gc = {
user = "root";
automatic = true;
interval = { Weekday = 0; Hour = 2; Minute = 0; };
options = "--delete-older-than 30d";
};
settings = {
trusted-users = [ "@admin" "fcuny" ];
experimental-features = [ "nix-command" "flakes" ];
};
};
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [
"nix-2.16.2" # FIXME https://github.com/nix-community/nixd/issues/357
];
};
}
|