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