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

12 lines
205 B
Nix

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