40 lines
630 B
Nix
40 lines
630 B
Nix
# Malcontent daemon.
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.malcontent = {
|
|
|
|
enable = lib.mkEnableOption "Malcontent, parental control support for applications";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkIf config.services.malcontent.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
malcontent
|
|
malcontent-ui
|
|
];
|
|
|
|
services.dbus.packages = [
|
|
# D-Bus services are in `out`, not the default `bin` output that would be picked up by `makeDbusConf`.
|
|
pkgs.malcontent.out
|
|
];
|
|
|
|
services.accounts-daemon.enable = true;
|
|
|
|
};
|
|
|
|
}
|