ark/profiles/cachix/default.nix

15 lines
381 B
Nix
Raw Normal View History

2022-02-18 20:31:01 +03:00
{
pkgs,
lib,
...
}:
let
folder = ./.;
toImport = name: value: folder + ("/" + name);
filterCaches = key: value: value == "regular" && lib.hasSuffix ".nix" key && key != "default.nix";
imports = lib.mapAttrsToList toImport (lib.filterAttrs filterCaches (builtins.readDir folder));
2022-02-18 20:31:01 +03:00
in {
2021-12-03 12:30:46 +03:00
#inherit imports;
2022-02-18 20:31:01 +03:00
nix.settings.substituters = ["https://cache.nixos.org/"];
}