nixpkgs/nixos/modules/programs/evince.nix

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

43 lines
518 B
Nix
Raw Normal View History

2019-03-26 11:08:58 +00:00
# Evince.
{
config,
pkgs,
lib,
...
}:
let
cfg = config.programs.evince;
in
{
2019-03-26 11:08:58 +00:00
###### interface
options = {
2019-08-09 16:26:15 +00:00
programs.evince = {
2019-03-26 11:08:58 +00:00
enable = lib.mkEnableOption "Evince, the GNOME document viewer";
2019-03-26 11:08:58 +00:00
package = lib.mkPackageOption pkgs "evince" { };
2019-03-26 11:08:58 +00:00
};
};
###### implementation
config = lib.mkIf config.programs.evince.enable {
2019-03-26 11:08:58 +00:00
environment.systemPackages = [ cfg.package ];
2019-03-26 11:08:58 +00:00
services.dbus.packages = [ cfg.package ];
2019-03-26 11:08:58 +00:00
systemd.packages = [ cfg.package ];
2019-03-26 11:08:58 +00:00
};
}