Files
nix-config/modules/home/programs/wofi/options.nix
2025-12-01 16:21:12 -06:00

13 lines
202 B
Nix

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