12 lines
212 B
Nix
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";
|
|
};
|
|
};
|
|
} |