1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00
This commit is contained in:
RGBCube 2023-12-04 16:18:34 +03:00
parent 20f4bc2ae3
commit a18109689e
No known key found for this signature in database

View file

@ -121,10 +121,10 @@
defaultConfiguration = host: abstractions.systemConfiguration {
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 3d";
persistent = true;
automatic = true;
dates = "daily";
options = "--delete-older-than 3d";
persistent = true;
};
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
@ -132,17 +132,15 @@
nix.optimise.automatic = true;
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"@wheel"
];
};
nix.settings.trusted-users = [
"root"
"@wheel"
];
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [ fenix.overlays.default ];