22 lines
290 B
Nix
22 lines
290 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
mkEnableOption
|
|
mkIf
|
|
;
|
|
|
|
cfg = config.my.home.flameshot;
|
|
in {
|
|
options.my.home.flameshot = {
|
|
enable = mkEnableOption "flameshot autolaunch";
|
|
};
|
|
|
|
config.services.flameshot = mkIf cfg.enable {
|
|
enable = true;
|
|
};
|
|
}
|