diff options
Diffstat (limited to 'hm/soft/satty.nix')
| -rw-r--r-- | hm/soft/satty.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hm/soft/satty.nix b/hm/soft/satty.nix new file mode 100644 index 0000000..d3964a7 --- /dev/null +++ b/hm/soft/satty.nix @@ -0,0 +1,13 @@ +{ config, lib, ... }: +let + cfg = config.szpont.hm.soft.satty; +in +{ + options.szpont.hm.soft.satty.enable = lib.mkEnableOption "enables satty image editor"; + + config = lib.mkIf cfg.enable { + programs.satty = { + enable = true; + }; + }; +} |
