From 6655a831f54aa988939e260160d439d6393f84be Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Sat, 18 Feb 2023 16:45:08 -0800 Subject: [PATCH] added flameshot screencap --- modules/flameshot.nix | 16 ++++++++++++++++ users/nixolas.nix | 5 +++-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 modules/flameshot.nix diff --git a/modules/flameshot.nix b/modules/flameshot.nix new file mode 100644 index 0000000..c313fb5 --- /dev/null +++ b/modules/flameshot.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +{ + + services.flameshot = { + enable = true; + settings = { + General = { + disabledTrayIcon = false; + showStartupLaunchMessage = false; + imageSavePath = "~/Pictures"; + saveAsFileExtension = ".png"; + }; + }; + }; +} diff --git a/users/nixolas.nix b/users/nixolas.nix index 2094906..cb96fb0 100644 --- a/users/nixolas.nix +++ b/users/nixolas.nix @@ -20,13 +20,14 @@ in imports = [ ../modules/emacs.nix - ../modules/git.nix + ../modules/flameshot.nix ../modules/fusuma.nix + ../modules/git.nix + ../modules/rofi.nix ../modules/vim.nix ../modules/wezterm.nix ../modules/xdg.nix ../modules/zsh.nix - ../modules/rofi.nix ]; home.file = {