nix-dotfiles/hmModules/apps/feh/app.nix

14 lines
192 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-04-14 05:40:02 -07:00
{
options.feh = {
enable = lib.mkEnableOption "Enables feh";
};
config = lib.mkIf config.feh.enable {
programs.feh = {
enable = true;
};
};
}