mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
9f054b5e1a
(It was requested by them.) I left one case due to fetching from their personal repo: pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix
32 lines
462 B
Nix
32 lines
462 B
Nix
# Zeitgeist
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
meta = {
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
services.zeitgeist = {
|
|
enable = mkEnableOption "zeitgeist";
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.services.zeitgeist.enable {
|
|
|
|
environment.systemPackages = [ pkgs.zeitgeist ];
|
|
|
|
services.dbus.packages = [ pkgs.zeitgeist ];
|
|
|
|
systemd.packages = [ pkgs.zeitgeist ];
|
|
};
|
|
}
|