From f1307d56ed69eaac7869a54b8caeddb6e3e39e62 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 21 Dec 2022 10:42:23 -0600 Subject: [PATCH] adding hyprland cachix --- README.org | 7 ++++++- flake.nix | 1 - system/kaladin/configuration.nix | 6 ++++++ system/syl/configuration.nix | 6 ++++++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index c73ca84..0d00257 100644 --- a/README.org +++ b/README.org @@ -37,7 +37,6 @@ Both include the home-manager module. Primarily I chose that route so that I cou }; hyprland = { url = "github:hyprwm/Hyprland"; - inputs.nixpkgs.follows = "nixpkgs"; }; eww = { url = "github:elkowar/eww"; @@ -173,6 +172,12 @@ nix = { I use plasma and awesome mostly as my desktop. Also all desktops will likely need ntfs support in order to work with windows devices. #+NAME: desktop #+begin_src nix +# This adds hyprland cache to cachix +nix.settings = { + substituters = ["https://hyprland.cachix.org"]; + trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="]; +}; + boot.supportedFilesystems = [ "ntfs" ]; services.xserver = { enable = true; diff --git a/flake.nix b/flake.nix index e3aab30..76c0da2 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,6 @@ }; hyprland = { url = "github:hyprwm/Hyprland"; - inputs.nixpkgs.follows = "nixpkgs"; }; eww = { url = "github:elkowar/eww"; diff --git a/system/kaladin/configuration.nix b/system/kaladin/configuration.nix index f110645..7080572 100644 --- a/system/kaladin/configuration.nix +++ b/system/kaladin/configuration.nix @@ -85,6 +85,12 @@ Option "TripleBuffer" "on" ''; + # This adds hyprland cache to cachix + nix.settings = { + substituters = ["https://hyprland.cachix.org"]; + trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="]; + }; + boot.supportedFilesystems = [ "ntfs" ]; services.xserver = { enable = true; diff --git a/system/syl/configuration.nix b/system/syl/configuration.nix index e6b4d43..4ff13fc 100644 --- a/system/syl/configuration.nix +++ b/system/syl/configuration.nix @@ -78,6 +78,12 @@ services.xserver.videoDrivers = ["intel"]; + # This adds hyprland cache to cachix + nix.settings = { + substituters = ["https://hyprland.cachix.org"]; + trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="]; + }; + boot.supportedFilesystems = [ "ntfs" ]; services.xserver = { enable = true;