Remove cachix Was only used for nixfmt, which is now in nixpkgs.
Alan Pearce alan@alanpearce.eu
Wed, 23 Oct 2019 17:39:34 +0200
2 files changed, 0 insertions(+), 18 deletions(-)
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.nix → system/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" ];