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

13 lines
192 B
Nix

{ config, lib, ... }:
{
options.feh = {
enable = lib.mkEnableOption "Enables feh";
};
config = lib.mkIf config.feh.enable {
programs.feh = {
enable = true;
};
};
}