Files
nixos/radish/home/custom-pkgs/flameshot/package.nix
2025-01-29 13:59:14 +02:00

7 lines
203 B
Nix

{ pkgs, ... }:
pkgs.writeShellScriptBin "flameshot" ''
export XDG_SESSION_TYPE= QT_QPA_PLATFORM=wayland
nohup ${pkgs.flameshot}/bin/flameshot >& /dev/null &
${pkgs.flameshot}/bin/flameshot "$@"
''