about summary refs log tree commit diff
path: root/home/eog
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-09 11:31:39 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-09 11:31:39 -0700
commit5c929290c03bcfbc243062157098458a77c2817e (patch)
tree796518fc50b7db940e47127ea67453fcc1a69779 /home/eog
parentinstall documentations (man) (diff)
downloadworld-5c929290c03bcfbc243062157098458a77c2817e.tar.gz
add a few more packages for home/
Diffstat (limited to '')
-rw-r--r--home/eog/default.nix9
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 ]);
+}