about summary refs log tree commit diff
path: root/home/feh/default.nix
blob: 003225296291c738e484bbbf4bb64c7ff96e115f (plain) (blame)
1
2
3
4
5
6
7
8
{ config, lib, ... }:
let cfg = config.my.home.feh;
in {
  options.my.home.feh = with lib; {
    enable = mkEnableOption "feh configuration";
  };
  config.programs.feh = lib.mkIf cfg.enable { enable = true; };
}