From 309fed2b2f3b6967f63c008b0c6cc81fc2e97e84 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 28 Mar 2020 02:00:16 -0400 Subject: [PATCH] nixos/malcontent: enable accounts-daemon, tweak description --- nixos/modules/services/desktops/malcontent.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/desktops/malcontent.nix b/nixos/modules/services/desktops/malcontent.nix index 57f19458f78..5d6912595b5 100644 --- a/nixos/modules/services/desktops/malcontent.nix +++ b/nixos/modules/services/desktops/malcontent.nix @@ -12,7 +12,7 @@ with lib; services.malcontent = { - enable = mkEnableOption "Malcontent"; + enable = mkEnableOption "Malcontent, parental control support for applications"; }; @@ -30,6 +30,8 @@ with lib; services.dbus.packages = [ pkgs.malcontent ]; + services.accounts-daemon.enable = true; + }; }