confix/modules/home-manager/swappy.nix
2024-02-21 08:24:20 -08:00

16 lines
263 B
Nix

{ pkgs, config, ... }:
{
xdg.configFile = {
"swappy/config" = {
enable = true;
text = ''
[Default]
save_dir=$HOME/Pictures/screenshots
line_size=5
text_size=20
text_font=Comic Mono
'';
};
};
}