Files
nix-config/modules/home/programs/wlogout/options.nix
2025-07-20 18:35:14 -05:00

12 lines
207 B
Nix

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