Files
nix-config/modules/home/desktop/extra/wlogout/options.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";
};
};
}