about summary refs log tree commit diff
path: root/home/evince/default.nix
blob: 36dc1dd28850415ad2040aebcaed65f7dfc87312 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, config, pkgs, ... }:
let cfg = config.my.home.evince;
in
{
  options.my.home.evince = with lib; {
    enable = mkEnableOption "evince configuration";
  };

  config.home.packages = with pkgs; lib.mkIf cfg.enable ([ gnome3.evince ]);
}