summaryrefslogtreecommitdiff
path: root/modules/nix.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-30 02:47:19 -0700
committerFuwn <[email protected]>2024-08-30 02:47:19 -0700
commit3a0434de7c5a5bf221512b9c2fcf94acc5f51214 (patch)
tree91d705c9122860cfba79ea93a95f3c796d11d88e /modules/nix.nix
parentupdate (diff)
downloadnixos-config-3a0434de7c5a5bf221512b9c2fcf94acc5f51214.tar.xz
nixos-config-3a0434de7c5a5bf221512b9c2fcf94acc5f51214.zip
update
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;
};
}