From 20949f330006d1ce1151c01f5594952a76fa36d6 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 10 Oct 2023 01:13:35 -0400 Subject: [PATCH] nix: add prismlauncher overlay --- modules/nix.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/nix.nix b/modules/nix.nix index 5490d08..c4dade6 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -1,8 +1,9 @@ -_: { +{inputs, ...}: { nixpkgs = { config = { allowUnfree = true; }; + overlays = [inputs.prismlauncher.overlays.default]; }; nh = { @@ -27,11 +28,13 @@ _: { "https://hyprland.cachix.org" "https://cache.nixos.org" "https://jakestanger.cachix.org" + "https://cache.garnix.io" ]; trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "jakestanger.cachix.org-1:VWJE7AWNe5/KOEvCQRxoE8UsI2Xs2nHULJ7TEjYm7mM=" + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ]; }; };