16 lines
263 B
Nix
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
|
|
'';
|
|
};
|
|
};
|
|
}
|