2025-11-12 14:23:51 -05:00
|
|
|
{
|
|
|
|
|
pkgs,
|
|
|
|
|
config,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
{
|
|
|
|
|
home.packages = with pkgs; [
|
2026-02-12 13:13:45 -05:00
|
|
|
grim
|
|
|
|
|
slurp
|
|
|
|
|
wl-clipboard-rs
|
2025-11-12 14:23:51 -05:00
|
|
|
];
|
|
|
|
|
|
2026-02-12 13:13:45 -05:00
|
|
|
programs.swappy = {
|
|
|
|
|
enable = true;
|
|
|
|
|
# Configuration options: https://github.com/jtheoof/swappy?tab=readme-ov-file#config
|
|
|
|
|
settings = {
|
|
|
|
|
Default = {
|
|
|
|
|
save_dir = config.xdg.userDirs.extraConfig.XDG_SCREENSHOTS_DIR;
|
|
|
|
|
save_filename_format = "%Y%m%d-%H%M%S.png";
|
|
|
|
|
show_panel = false;
|
|
|
|
|
auto_save = false;
|
|
|
|
|
early_exit = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-11-12 14:23:51 -05:00
|
|
|
}
|