nixos/services.zeitgeist: remove with lib;

This commit is contained in:
Felix Buehler 2024-12-08 13:18:25 +01:00
parent e323870fc8
commit 19fb7137b0

View File

@ -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 ];