Files
nix-config/modules/home/desktop/extra/wofi/options.nix
2025-07-18 14:50:13 -05:00

12 lines
206 B
Nix

{ lib, ... }:
with lib;
{
options.mjallen.desktop.extra.wofi = {
enable = mkEnableOption "enable wofi";
fontName = mkOption {
type = types.str;
default = "Deja Vu Sans";
};
};
}