NixOS-Config/modules/home/sway/swayshot/swappy/default.nix
2024-10-09 03:36:08 -04:00

16 lines
239 B
Nix

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