mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
2998847634
Bumps `nixpkgs-unstable`, `nixpkgs-stable`, `home-manager-stable`, `home-manager-unstable`. Signed-off-by: magic_rb <magic_rb@redalder.org>
30 lines
586 B
Nix
30 lines
586 B
Nix
{
|
|
inputs',
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
flip
|
|
mapAttrs
|
|
filterAttrs
|
|
const
|
|
;
|
|
in {
|
|
nix.registry =
|
|
flip mapAttrs (filterAttrs (n: const (n != "nixpkgs")) inputs')
|
|
(
|
|
n: flake: {inherit flake;}
|
|
);
|
|
nix.settings = {
|
|
substituters = [
|
|
"https://cache.nixos.org/"
|
|
# "https://hydra.redalder.org/"
|
|
];
|
|
trusted-public-keys = [
|
|
"redalder-nix-cache-1:8t4zBJWgVtrfAOJ45iNHEqA/dDFV47Sr1sGa8ME9ru0="
|
|
];
|
|
experimental-features = ["flakes" "nix-command" "ca-derivations" "recursive-nix" "dynamic-derivations"];
|
|
};
|
|
}
|