From 791bc419b6dac7c70951981ef6b34cdf85828470 Mon Sep 17 00:00:00 2001 From: adikro Date: Sat, 20 Dec 2025 03:14:45 +0100 Subject: absolutely massive rewrite, made (almost) everything modular with changes to come --- hm/soft/satty.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hm/soft/satty.nix (limited to 'hm/soft/satty.nix') 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; + }; + }; +} -- cgit v1.3