meta: Make system module customizable

This commit is contained in:
Donovan Glover 2024-04-04 09:41:32 -04:00
parent e1e1243618
commit 7ef220be22
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,15 +1,36 @@
{ pkgs, ... }:
{ pkgs, lib, config, ... }:
let
inherit (lib) mkOption;
inherit (lib.types) str listOf;
inherit (pkgs.nixVersions) nix_2_19;
# TODO: Make these variables options
timeZone = "America/New_York";
defaultLocale = "ja_JP.UTF-8";
supportedLocales = [ "ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
stateVersion = "22.11";
cfg = config.modules.system;
in
{
options.modules.system = {
timeZone = mkOption {
type = str;
default = "America/New_York";
};
defaultLocale = mkOption {
type = str;
default = "ja_JP.UTF-8";
};
supportedLocales = mkOption {
type = listOf str;
default = [ "ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
};
stateVersion = mkOption {
type = str;
default = "22.11";
};
};
config = {
boot = {
tmp.cleanOnBoot = true;
@ -46,14 +67,15 @@ in
};
time = {
inherit timeZone;
inherit (cfg) timeZone;
};
i18n = {
inherit defaultLocale supportedLocales;
inherit (cfg) defaultLocale supportedLocales;
};
system = {
inherit stateVersion;
inherit (cfg) stateVersion;
};
};
}