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