blob: c7f784bdc8da491080e5815a9ce7b624b990aec8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ lib, config, pkgs, ... }:
let cfg = config.my.home.eog;
in {
options.my.home.eog = with lib; {
enable = mkEnableOption "eog configuration";
};
config.home.packages = with pkgs; lib.mkIf cfg.enable ([ gnome3.eog ]);
}
|