nixpkgs/nixos/modules/services/desktops/zeitgeist.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
565 B
Nix
Raw Normal View History

2018-08-15 23:05:30 +00:00
# Zeitgeist
{ config, lib, pkgs, ... }:
with lib;
{
2021-08-02 00:46:24 +00:00
meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
};
2018-08-15 23:05:30 +00:00
###### interface
options = {
services.zeitgeist = {
enable = mkEnableOption (lib.mdDoc "zeitgeist, a service which logs the users' activities and events");
2018-08-15 23:05:30 +00:00
};
};
###### implementation
config = mkIf config.services.zeitgeist.enable {
environment.systemPackages = [ pkgs.zeitgeist ];
services.dbus.packages = [ pkgs.zeitgeist ];
systemd.packages = [ pkgs.zeitgeist ];
};
}