all repos — nixfiles @ a0854b44151d68ba8fa21735a411389ca5c1d13a

System and user configuration, managed by nix and home-manager

Remove cachix Was only used for nixfmt, which is now in nixpkgs.

Alan Pearce
commit

a0854b44151d68ba8fa21735a411389ca5c1d13a

parent

bbd4b643355d203747bf527893e00453b4d6c665

2 files changed, 0 insertions(+), 18 deletions(-)

jump to
D system/cachix.nix
@@ -1,14 +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.binaryCaches = ["https://cache.nixos.org/"]; -} -
M system/settings/configuration/nix.nixsystem/settings/configuration/nix.nix
@@ -15,10 +15,6 @@ options = "--delete-older-than 14d";
}; }; - environment.systemPackages = with pkgs; [ - cachix - ]; - system.autoUpgrade = { enable = true; flags = [ "--max-jobs" "1" ];