Files
nixos-config/home/services/flameshot.nix
Elias Schröter e5347f74f8 rework services & alacritty
move back to alacritty and install various services
2026-03-18 15:39:27 +01:00

18 lines
332 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ grim ];
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = true;
showDesktopNotification = false;
showHelp = false;
showStartupLaunchMessage = false;
useGrimAdapter = true;
};
};
};
}