From 30d6357b07baee72f3b7a7e394954a5ccfff9081 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 5 Nov 2024 23:38:07 +0100 Subject: [PATCH] home/programs/games: pkgs.callPackage bolt-launcher directly from within host (because of insecure packages) --- home/programs/games/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/programs/games/default.nix b/home/programs/games/default.nix index 0803c0c..7c0571b 100644 --- a/home/programs/games/default.nix +++ b/home/programs/games/default.nix @@ -19,5 +19,9 @@ pkgs.yad inputs.self.packages.${pkgs.system}.bolt-launcher + # this is really ugly but needed since packages uses its own version of nixpkgs and i dont want to override flake-level nixpkgs + (pkgs.callPackage + ../../../pkgs/bolt-launcher.nix + {}) ]; }