From fef5415af4863f60b3cefe8664e6116ba7ac1603 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Mon, 8 Apr 2024 16:19:33 -0500 Subject: [PATCH] feat: flameshot Signed-off-by: jolheiser --- apps/gui/default.nix | 1 + apps/gui/flameshot.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 apps/gui/flameshot.nix diff --git a/apps/gui/default.nix b/apps/gui/default.nix index 5481efa..540df4b 100644 --- a/apps/gui/default.nix +++ b/apps/gui/default.nix @@ -2,6 +2,7 @@ imports = [ ../nogui ./firefox.nix + ./flameshot.nix ./ghostty.nix ./gtk.nix ./spotify.nix diff --git a/apps/gui/flameshot.nix b/apps/gui/flameshot.nix new file mode 100644 index 0000000..6b60584 --- /dev/null +++ b/apps/gui/flameshot.nix @@ -0,0 +1,11 @@ +{ + services.flameshot = { + enable = true; + settings = { + General = { + showStartupLaunchMessage = false; + saveAsFileExtension = ".png"; + }; + }; + }; +}