From 63adf38a356abb89e616034cb916b7d07552e6ce Mon Sep 17 00:00:00 2001 From: KnightArtorias Date: Thu, 18 Jun 2026 18:50:40 -0400 Subject: [PATCH] Fix flameshot pkgs issue --- modules/features/flameshot.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/features/flameshot.nix b/modules/features/flameshot.nix index 538d331..0db5004 100644 --- a/modules/features/flameshot.nix +++ b/modules/features/flameshot.nix @@ -1,5 +1,13 @@ { - flake.nixosModules.flameshot = { + flake.nixosModules.flameshot = { pkgs, ... }: { + environment.systemPackages = with pkgs; [ + flameshot + grim + slurp + satty + wl-copy + ]; + services.flameshot = { enable = true; General = { @@ -10,12 +18,4 @@ }; }; - - environment.systemPackages = [ - flameshot - grim - slurp - satty - wl-copy - ]; }