diff options
author | Alan Pearce | 2019-08-27 15:02:12 +0200 |
---|---|---|
committer | Alan Pearce | 2019-08-27 15:02:57 +0200 |
commit | 4551a59f04bd3dba4e2d00449389b15040fdd54d (patch) | |
tree | cfe4b6b90cfcb9abb32d4f33287d1ff84ce624bd | |
parent | 3fbb8b4190e93b3ac58511df2039ee48a412697a (diff) | |
download | nixos-configuration-4551a59f04bd3dba4e2d00449389b15040fdd54d.tar.lz nixos-configuration-4551a59f04bd3dba4e2d00449389b15040fdd54d.tar.zst nixos-configuration-4551a59f04bd3dba4e2d00449389b15040fdd54d.zip |
nix: install cachix
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | cachix.nix | 14 | ||||
-rw-r--r-- | modules/configuration/nix.nix | 4 |
3 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 8a1263b..1ba8e95 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /hardware-configuration.nix /configuration.nix /darwin-configuration.nix +/cachix diff --git a/cachix.nix b/cachix.nix new file mode 100644 index 0000000..cce90a3 --- /dev/null +++ b/cachix.nix @@ -0,0 +1,14 @@ + +# WARN: this file will get overwritten by $ cachix use <name> +{ pkgs, lib, ... }: + +let + folder = ./cachix; + toImport = name: value: folder + ("/" + name); + filterCaches = key: value: value == "regular" && lib.hasSuffix ".nix" key; + imports = lib.mapAttrsToList toImport (lib.filterAttrs filterCaches (builtins.readDir folder)); +in { + inherit imports; + nix.binaryCaches = ["https://cache.nixos.org/"]; +} + \ No newline at end of file diff --git a/modules/configuration/nix.nix b/modules/configuration/nix.nix index 54361d9..15cbb7a 100644 --- a/modules/configuration/nix.nix +++ b/modules/configuration/nix.nix @@ -21,6 +21,10 @@ }; }; + environment.systemPackages = with pkgs; [ + cachix + ]; + system.autoUpgrade = { enable = true; flags = [ "--max-jobs" "2" ]; |