nix/option/Const.nix

34 lines
760 B
Nix
Raw Normal View History

2025-01-09 14:35:30 +03:00
{ lib, ... }:
{
2025-01-16 12:50:27 +03:00
options.module.const = {
2025-01-09 14:35:30 +03:00
droidStateVersion = lib.mkOption {
default = "24.05";
type = lib.types.str;
};
stateVersion = lib.mkOption {
default = "24.11";
type = lib.types.str;
};
timeZone = lib.mkOption {
default = "Europe/Moscow";
type = lib.types.str;
};
url = lib.mkOption {
default = "https://git.voronind.com/voronind/nix.git";
type = lib.types.str;
};
2025-01-28 14:19:37 +03:00
home = lib.mkOption {
default = "fd09:8d46:b26:0:8079:82ff:fe1a:916a";
type = lib.types.str;
};
ula = lib.mkOption {
default = "fd09:8d46:b26::/48";
type = lib.types.str;
};
2025-01-09 14:35:30 +03:00
host = lib.mkOption {
default = { };
type = lib.types.attrs;
};
};
}