From 7cfddd16dfd446b8220aebf8f4469bbee4c4de8f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 20 Feb 2026 01:07:46 -0800 Subject: [PATCH] feat(sni): enable Flameshot grim adapter --- nixos/sni.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nixos/sni.nix b/nixos/sni.nix index 34d22f7d..abe13923 100644 --- a/nixos/sni.nix +++ b/nixos/sni.nix @@ -42,7 +42,14 @@ makeEnable config "myModules.sni" true { services.pasystray.enable = true; - services.flameshot.enable = true; + services.flameshot = { + enable = true; + settings = { + General = { + useGrimAdapter = true; + }; + }; + }; } ]; }