nixos-config/modules/home/wms/sway/swayshot/swappy/default.nix
2024-11-12 18:03:28 -05:00

11 lines
204 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [ swappy ];
file.".config/swappy/config".text = ''
[Default]
early_exit=true
save_dir=$HOME/Pictures/Screenshots
'';
};
}