mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
nixos/services.zeitgeist: remove with lib;
This commit is contained in:
parent
e323870fc8
commit
19fb7137b0
@ -1,9 +1,5 @@
|
||||
# Zeitgeist
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
|
||||
meta = with lib; {
|
||||
@ -14,13 +10,13 @@ with lib;
|
||||
|
||||
options = {
|
||||
services.zeitgeist = {
|
||||
enable = mkEnableOption "zeitgeist, a service which logs the users' activities and events";
|
||||
enable = lib.mkEnableOption "zeitgeist, a service which logs the users' activities and events";
|
||||
};
|
||||
};
|
||||
|
||||
###### implementation
|
||||
|
||||
config = mkIf config.services.zeitgeist.enable {
|
||||
config = lib.mkIf config.services.zeitgeist.enable {
|
||||
|
||||
environment.systemPackages = [ pkgs.zeitgeist ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user