Files
nix-config/modules/home/programs/wlogout/options.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

13 lines
208 B
Nix

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