about summary refs log tree commit diff
path: root/home/eog/default.nix
blob: 1fa11085e570666f4bfcec70eb75be64c2951deb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ 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 ]);
}