nixos: remove cachix

I don't actively use cachix anymore.
This commit is contained in:
joachimschmidt557 2024-05-04 19:03:49 +02:00
parent 6931a3b593
commit 41a38a9edf
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
7 changed files with 0 additions and 64 deletions

View file

@ -1,13 +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.settings.trusted-substituters = [ "https://cache.nixos.org/" ];
}

View file

@ -1,10 +0,0 @@
{
nix.settings = {
trusted-substituters = [
"https://nimmm.cachix.org"
];
trusted-public-keys = [
"nimmm.cachix.org-1:usYhOtylPbGmyX95Xdy2YVMOKZVBBt4pTQVAQrzw+0k="
];
};
}

View file

@ -1,10 +0,0 @@
{
nix.settings = {
trusted-substituters = [
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
}

View file

@ -1,10 +0,0 @@
{
nix.settings = {
trusted-substituters = [
"https://winewayland.cachix.org"
];
trusted-public-keys = [
"winewayland.cachix.org-1:yXIVHB/ag+BdOg1RPe9yTXtTlYav0xSj0LAzl+dgOXY="
];
};
}

View file

@ -1,10 +0,0 @@
{
nix.settings = {
trusted-substituters = [
"https://zig-nightly.cachix.org"
];
trusted-public-keys = [
"zig-nightly.cachix.org-1:OnBNrwrXNoCtCzjuMEfruWSaZEixGGSvFhc9OBtx1wg="
];
};
}

View file

@ -1,10 +0,0 @@
{
nix.settings = {
trusted-substituters = [
"https://zigpkgs.cachix.org"
];
trusted-public-keys = [
"zigpkgs.cachix.org-1:0OzsirU7FWCIcV9KFlEvQd/6n6rB34tNXMiDbEOJ+3w="
];
};
}

View file

@ -11,7 +11,6 @@
# Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
/etc/nixos/private.nix
./cachix.nix
];
nixpkgs.config.allowUnfree = true;