24 lines
366 B
Nix
24 lines
366 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.host = {
|
|
username = lib.mkOption {
|
|
type = lib.types.str;
|
|
};
|
|
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
};
|
|
|
|
timezone = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "Europe/Brussels";
|
|
};
|
|
|
|
locale = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "en_US.UTF-8";
|
|
};
|
|
};
|
|
}
|