12 lines
227 B
Nix
Raw Permalink Normal View History

2025-07-27 22:50:25 +02:00
{
config,
lib,
...
}:
with lib; let
cfg = config.home.services.playerctld;
in {
options.home.services.playerctld.enable = mkEnableOption "Enable playerctld daemon";
config.services.playerctld.enable = cfg.enable;
}