12 lines
222 B
Nix
12 lines
222 B
Nix
{ lib, namespace, ... }:
|
|
with lib;
|
|
{
|
|
options.${namespace}.desktop.extra.wofi = {
|
|
enable = mkEnableOption "enable wofi";
|
|
|
|
fontName = mkOption {
|
|
type = types.str;
|
|
default = "Deja Vu Sans";
|
|
};
|
|
};
|
|
} |