nixos/hosts/common/cachix.nix

7 lines
197 B
Nix
Raw Normal View History

2024-05-23 21:26:02 +00:00
{ pkgs, ... }: {
nix.settings = {
substituters = [ "https://hyprland.cachix.org" ];
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
};
}