diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-09 11:31:39 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-09 11:31:39 -0700 |
commit | 5c929290c03bcfbc243062157098458a77c2817e (patch) | |
tree | 796518fc50b7db940e47127ea67453fcc1a69779 /home/eog | |
parent | install documentations (man) (diff) | |
download | world-5c929290c03bcfbc243062157098458a77c2817e.tar.gz |
add a few more packages for home/
Diffstat (limited to '')
-rw-r--r-- | home/eog/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/home/eog/default.nix b/home/eog/default.nix new file mode 100644 index 0000000..c7f784b --- /dev/null +++ b/home/eog/default.nix @@ -0,0 +1,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 ]); +} |