nixos-configs/nixosModules/base/substituters/default.nix

53 lines
2.2 KiB
Nix
Raw Normal View History

{
config,
2024-05-29 21:18:50 -04:00
lib,
pkgs,
...
2024-05-29 21:18:50 -04:00
}: let
2024-12-11 12:29:24 -05:00
inherit (lib) elem foldl isList mergeAttrsWithFunc mkIf optionals unique;
2024-11-23 04:53:02 -05:00
cfg = config.roles.base;
2024-08-30 12:30:35 -04:00
mergeAttrsList = list:
foldl (mergeAttrsWithFunc (a: b:
if isList a && isList b
then unique (a ++ b)
else b)) {}
list;
2024-11-23 04:53:02 -05:00
in
mkIf cfg.enable {
environment.systemPackages = [
(pkgs.writeShellApplication {
name = "rebuild-no-cache";
runtimeInputs = [config.programs.nh.package];
text = ''
exec nh os switch -- --option binary-caches "https://cache.nixos.org" "$@"
'';
})
];
2024-11-23 04:53:02 -05:00
nix = {
settings = let
mkSubstituterConf = url: key: {
substituters = [url];
trusted-public-keys = optionals (key != null) [key];
};
in
mergeAttrsList ([
(mkSubstituterConf "https://cache.nixos.org" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=")
(mkSubstituterConf "https://hyprland.cachix.org" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=")
(mkSubstituterConf "https://nix-gaming.cachix.org" "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=")
(mkSubstituterConf "https://nixpkgs-wayland.cachix.org" "nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA=")
(mkSubstituterConf "https://nix-community.cachix.org" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=")
(mkSubstituterConf "https://viperml.cachix.org" "viperml.cachix.org-1:qZhKBMTfmcLL+OG6fj/hzsMEedgKvZVFRRAhq7j8Vh8=")
(mkSubstituterConf "https://cuda-maintainers.cachix.org" "cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E=")
]
2024-12-11 12:29:24 -05:00
++ optionals (config.networking.hostName != "servivi") [
2024-11-23 04:53:02 -05:00
(mkSubstituterConf "https://cache.nelim.org" "cache.nelim.org:JmFqkUdH11EA9EZOFAGVHuRYp7EbsdJDHvTQzG2pPyY=")
2024-12-11 12:29:24 -05:00
]
++ optionals (elem config.networking.hostName ["bbsteamie" "binto" "wim"]) [
(mkSubstituterConf "https://cache-apt.nelim.org" "cache-apt.nelim.org:NLAsWxa2Qbm4b+hHimjCpZfm48a4oN4O/GPZY9qpjNw=")
2024-11-23 04:53:02 -05:00
]);
};
}