mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
nixos/services.malcontent: remove with lib;
This commit is contained in:
parent
e693f4b953
commit
e323870fc8
@ -1,9 +1,5 @@
|
||||
# Malcontent daemon.
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
|
||||
###### interface
|
||||
@ -12,7 +8,7 @@ with lib;
|
||||
|
||||
services.malcontent = {
|
||||
|
||||
enable = mkEnableOption "Malcontent, parental control support for applications";
|
||||
enable = lib.mkEnableOption "Malcontent, parental control support for applications";
|
||||
|
||||
};
|
||||
|
||||
@ -21,7 +17,7 @@ with lib;
|
||||
|
||||
###### implementation
|
||||
|
||||
config = mkIf config.services.malcontent.enable {
|
||||
config = lib.mkIf config.services.malcontent.enable {
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
malcontent
|
||||
|
Loading…
Reference in New Issue
Block a user