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 = {