summaryrefslogtreecommitdiff
path: root/modules/nix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nix.nix')
-rw-r--r--modules/nix.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/modules/nix.nix b/modules/nix.nix
index 26d79ef..65413f0 100644
--- a/modules/nix.nix
+++ b/modules/nix.nix
@@ -2,14 +2,9 @@
nixpkgs.config.allowUnfree = true;
nix = {
- allowedUsers = [
- "root"
- "@wheel"
- ];
-
settings = {
auto-optimise-store = true;
- http-connections = 50;
+ http-connections = 0;
warn-dirty = false;
log-lines = 50;
# sandbox = "relaxed";
@@ -19,6 +14,11 @@
"@wheel"
];
+ allowed-users = [
+ "root"
+ "@wheel"
+ ];
+
substituters = [
"https://nix-community.cachix.org"
"https://hyprland.cachix.org"
@@ -36,7 +36,5 @@
dates = "weekly";
options = "--delete-older-than 7d";
};
-
- # distributedBuilds = true;
};
}