aboutsummaryrefslogtreecommitdiff
path: root/cachix.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-09-07 17:57:15 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-09-07 17:57:15 +0530
commitc4e46f4ee64a0096bb836de0346d3ca5ff2b8145 (patch)
treefd0f7a9770ce3c10c35a2aeb5b164e1a82764b48 /cachix.nix
parent112e4055f7ed2f038483988d292152011235d715 (diff)
deletion changes
Diffstat (limited to 'cachix.nix')
-rw-r--r--cachix.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/cachix.nix b/cachix.nix
deleted file mode 100644
index ecd2d39..0000000
--- a/cachix.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-
-# 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.settings.substituters = ["https://cache.nixos.org/"];
-}