From fc37dfaa658df31bb3b95c1566aff71f3ed58d30 Mon Sep 17 00:00:00 2001 From: Payas Relekar Date: Sat, 16 Apr 2022 20:21:02 +0530 Subject: [PATCH] Cachix: Whitespace changes --- cachix.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cachix.nix b/cachix.nix index ecd2d39..338e8f2 100644 --- a/cachix.nix +++ b/cachix.nix @@ -1,4 +1,3 @@ - # WARN: this file will get overwritten by $ cachix use { pkgs, lib, ... }: @@ -7,7 +6,8 @@ let 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 { +in +{ inherit imports; - nix.settings.substituters = ["https://cache.nixos.org/"]; + nix.settings.substituters = [ "https://cache.nixos.org/" ]; }