summary refs log tree commit diff
path: root/nixos/modules/services/desktops/malcontent.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-03-28 02:00:16 -0400
committerJan Tojnar <jtojnar@gmail.com>2020-04-08 17:08:16 +0200
commit309fed2b2f3b6967f63c008b0c6cc81fc2e97e84 (patch)
treee90c943a402f9ada8892f2ff5ccecba46c6d28da /nixos/modules/services/desktops/malcontent.nix
parent4e68e0a5a266600ea755f8829b0acf3630318841 (diff)
downloadnixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.tar
nixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.tar.gz
nixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.tar.bz2
nixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.tar.lz
nixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.tar.xz
nixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.tar.zst
nixpkgs-309fed2b2f3b6967f63c008b0c6cc81fc2e97e84.zip
nixos/malcontent: enable accounts-daemon, tweak description
Diffstat (limited to 'nixos/modules/services/desktops/malcontent.nix')
-rw-r--r--nixos/modules/services/desktops/malcontent.nix4
1 files changed, 3 insertions, 1 deletions
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;
+
   };
 
 }