dotnix/modules/home/swappy.nix
2025-03-29 19:05:05 +01:00

19 lines
365 B
Nix

{ username, ... }:
{
home.file = {
".config/swappy/config".text = ''
[Default]
save_dir=/home/${username}/Pictures/Screenshots
save_filename_format=swappy-%Y%m%d-%H%M%S.png
show_panel=false
line_size=5
text_size=20
text_font=Ubuntu
paint_mode=brush
early_exit=true
fill_shape=false
'';
};
}