pub-solar-os/profiles/cachix/default.nix

12 lines
367 B
Nix
Raw Normal View History

{ 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));
2020-07-31 04:17:28 +00:00
in
{
inherit imports;
2020-07-31 04:17:28 +00:00
nix.binaryCaches = [ "https://cache.nixos.org/" ];
}