PortValhalla/lib/modules/valhalla.nix

29 lines
529 B
Nix
Raw Normal View History

2024-07-11 19:58:46 +00:00
{ 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;
};
2024-07-11 20:05:36 +00:00
keyMap = mkOption {
type = types.nullOr types.str;
description = "The console key map of the system.";
default = null;
};
2024-07-11 19:58:46 +00:00
};
};
}