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

12 lines
212 B
Nix

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