Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
325 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
pkgs,
config,
...
}:
let
cfg = config.programs.kclock;
kclockPkg = pkgs.libsForQt5.kclock;
in
{
options.programs.kclock = {
enable = lib.mkEnableOption "KClock";
};
config = lib.mkIf cfg.enable {
services.dbus.packages = [ kclockPkg ];
environment.systemPackages = [ kclockPkg ];
};
}