NixOS-Config/modules/home/sway/swayshot/swappy/default.nix

14 lines
229 B
Nix

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