From f3d1333f0d9e65bb5c9480c257bb71d34ee87c7c Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Thu, 26 Mar 2020 02:02:20 +0100 Subject: malcontent-ui: split from malcontent The 0.7.0 update allows us to split the package. --- nixos/modules/services/desktops/malcontent.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/desktops/malcontent.nix b/nixos/modules/services/desktops/malcontent.nix index 416464cbe08f..57f19458f782 100644 --- a/nixos/modules/services/desktops/malcontent.nix +++ b/nixos/modules/services/desktops/malcontent.nix @@ -23,7 +23,10 @@ with lib; config = mkIf config.services.malcontent.enable { - environment.systemPackages = [ pkgs.malcontent ]; + environment.systemPackages = with pkgs; [ + malcontent + malcontent-ui + ]; services.dbus.packages = [ pkgs.malcontent ]; -- cgit 1.4.1 From 309fed2b2f3b6967f63c008b0c6cc81fc2e97e84 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 28 Mar 2020 02:00:16 -0400 Subject: nixos/malcontent: enable accounts-daemon, tweak description --- nixos/modules/services/desktops/malcontent.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/desktops/malcontent.nix b/nixos/modules/services/desktops/malcontent.nix index 57f19458f782..5d6912595b52 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; + }; } -- cgit 1.4.1