Hypr, fix cachix support

This commit is contained in:
Julia Lange 2024-07-14 04:04:58 -07:00
parent fafbb75859
commit d524f7c068
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto

View file

@ -10,12 +10,12 @@
inputs.hyprland.nixosModules.default
];
config = lib.mkIf config.hyprland.enable {
programs.hyprland.enable = true;
config = {
nix.settings = {
substituters = [ "https://hyprland.cachix.org" ];
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
experimental-features = [ "nix-command" "flakes" ];
};
programs.hyprland.enable = lib.mkIf config.hyprland.enable true;
};
}