diff options
| author | Fuwn <[email protected]> | 2024-08-29 20:54:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-29 20:54:34 -0700 |
| commit | 6ddc25d4e189c30431703f602653b8bae861e4af (patch) | |
| tree | 979cc4d790c3ce8895471d008d61c3e9645acec4 /modules/nix | |
| parent | firewall (diff) | |
| download | nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.tar.xz nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.zip | |
some stuff
Diffstat (limited to 'modules/nix')
| -rw-r--r-- | modules/nix/default.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/modules/nix/default.nix b/modules/nix/default.nix deleted file mode 100644 index 365dc77..0000000 --- a/modules/nix/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ - nixpkgs.config.allowUnfree = true; - - nix = { - settings = { - auto-optimise-store = true; - http-connections = 50; - warn-dirty = false; - log-lines = 50; - # sandbox = "relaxed"; - - trusted-users = [ - "root" - "@wheel" - ]; - - substituters = [ - "https://nix-community.cachix.org" - "https://hyprland.cachix.org" - "https://ghostty.cachix.org" - ]; - - experimental-features = [ - "nix-command" - "flakes" - ]; - }; - - gc = { - automatic = false; - dates = "weekly"; - options = "--delete-older-than 7d"; - }; - - # distributedBuilds = true; - }; -} |