{ lib, ... }:
let
inherit (lib)
mkOption
types
;
in {
imports = [
./i18n.nix
./partition.nix
];
options = {
valhalla = {
timeZone = mkOption {
type = types.nullOr types.str;
description = "The time zone of the system.";
default = null;
};
}