Add caches for Hyprland and FjordLauncher

This commit is contained in:
Pedro Rey Anca 2024-07-19 18:26:52 +02:00
parent 1216b184ae
commit 7ba6eafa7d
2 changed files with 14 additions and 0 deletions

View file

@ -10,6 +10,7 @@
[(import ./bootloader.nix)]
++ [(import ./hardware.nix)]
++ [(import ./xserver.nix)]
++ [(import ./nix.nix)]
++ [(import ./network.nix)]
++ [(import ./pipewire.nix)]
++ [(import ./programs.nix)]

13
modules/core/nix.nix Normal file
View file

@ -0,0 +1,13 @@
{...}: {
nix.settings = {
trusted-substituters = [
"https://cache.garnix.io"
"https://hyprland.cachix.org"
];
trusted-public-keys = [
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
};
}