mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 15:42:02 +00:00
19 lines
197 B
Nix
19 lines
197 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
cfg = config.nmasur.presets.services.;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
|
||
|
options.nmasur.presets.services..enable = lib.mkEnableOption "";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
};
|
||
|
}
|