From d1523ffeabcf8d9d19c75cbd2b442ef3db458303 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 5 Apr 2024 16:35:13 -0400 Subject: [PATCH] systemConfig: added hyprland cachix --- nixosModules/systemConfig/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/nixosModules/systemConfig/default.nix b/nixosModules/systemConfig/default.nix index 76a2f013..8508cf3e 100644 --- a/nixosModules/systemConfig/default.nix +++ b/nixosModules/systemConfig/default.nix @@ -1,8 +1,7 @@ { config, pkgs, lib, ... }: { - imports = - [ ./network.nix ./plymouth ./power-profiles-daemon ./zramSwap ]; + imports = [ ./network.nix ./plymouth ./power-profiles-daemon ./zramSwap ]; systemConfig.power-profiles-daemon.enable = lib.mkDefault true; @@ -102,10 +101,14 @@ auto-optimise-store = true; # Enable experimental `nix` command and flakes. experimental-features = [ "nix-command" "flakes" ]; - substituters = - [ "https://nixcache.raffauflabs.com" "https://cache.nixos.org/" ]; + substituters = [ + "https://nixcache.raffauflabs.com" + "https://cache.nixos.org/" + "https://hyprland.cachix.org" + ]; trusted-public-keys = [ "nixcache.raffauflabs.com:yFIuJde/izA4aUDI3MZmBLzynEsqVCT1OfCUghOLlt8=" + "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ]; }; };