summaryrefslogtreecommitdiff
path: root/hm/soft/satty.nix
blob: d3964a78e6fd91a3403e82c44aeba8ff73e6b6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
    };
  };
}