From 98186715b1823186cce658b7731d62c7f5c39106 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Fri, 17 May 2024 14:52:18 +0200 Subject: [PATCH] Add hyprland cachix --- nixos/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 63d4f84..b2a1ee3 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -122,6 +122,12 @@ in { } else { }; + nix.settings = { + substituters = [ "https://hyprland.cachix.org" ]; + trusted-public-keys = + [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ]; + }; + services.dbus.enable = true; system.stateVersion = variable.stateVersion;