diff options
Diffstat (limited to 'nixos/modules/cachix/default.nix')
-rw-r--r-- | nixos/modules/cachix/default.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/nixos/modules/cachix/default.nix b/nixos/modules/cachix/default.nix deleted file mode 100644 index 9dd55b5..0000000 --- a/nixos/modules/cachix/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ config, pkgs, lib, ... }: -let - folder = ./caches; - 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.settings.substituters = [ "https://cache.nixos.org/" ]; - - environment.systemPackages = [ pkgs.cachix ]; -} |