blob: 16abc571f94b0ce308d8fb11c21965f13ce080c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ 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 ]);
}
|