19 lines
278 B
Nix
19 lines
278 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;
|
|
};
|
|
}
|