ooknet/home/options/appearance/theme.nix
2024-07-15 20:53:35 +12:00

13 lines
197 B
Nix

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