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

16 lines
239 B
Nix
Raw Normal View History

2024-10-09 03:36:08 -04:00
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
swappy
];
file = {
".config/swappy/config".text = ''
[Default]
early_exit=true
save_dir=$HOME/Pictures/Screenshots
'';
};
};
}