13 lines
205 B
Nix
13 lines
205 B
Nix
{ lib, config, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption;
|
|
inherit (lib.types) nullOr enum;
|
|
in
|
|
|
|
{
|
|
options.ooknet.theme = mkOption {
|
|
type = nullOr (enum [ "minimal" "phone" ]);
|
|
default = null;
|
|
};
|
|
}
|