ooknet/home/options/appearance/theme.nix

9 lines
191 B
Nix

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