move satty config to nix

This commit is contained in:
2026-02-21 20:06:02 +01:00
parent e4fe492b46
commit b614d6e04d
2 changed files with 42 additions and 1 deletions

41
modules/satty.nix Normal file
View File

@@ -0,0 +1,41 @@
{ ... }:
{
programs.satty = {
enable = true;
package = null;
settings = {
general = {
fullscreen = true;
early-exit = true;
initial-tool = "crop";
output-filename = "/home/szymon/Obrazy/zrzuty/%d-%m-%Y_%H:%M:%S.png";
save-after-copy = true;
disable-notifications = false;
actions-on-escape = [ "exit" ];
action-on-enter = "save-to-clipboard";
no-window-decoration = true;
};
color-palette = {
palette = [
"#00ffff"
"#a52a2a"
"#dc143c"
"#ff1493"
"#ffd700"
"#008000"
];
custom = [
"#00ffff"
"#a52a2a"
"#dc143c"
"#ff1493"
"#ffd700"
"#008000"
];
};
};
};
}