nix-config/home/feh/default.nix

14 lines
222 B
Nix
Raw Normal View History

2021-05-07 19:35:47 +02:00
{ 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;
};
}