started overhaul

This commit is contained in:
KoenDR06 2025-02-10 22:16:14 +01:00
parent d1fec56ebf
commit d6bdbe514d
14 changed files with 649 additions and 23 deletions

View file

@ -0,0 +1,21 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.common.locale;
in {
options = {
horseman.common.locale = {
enable = mkEnableOption "Dutch locale settings";
};
};
config = mkIf cfg.enable {
time.timeZone = "Europe/Amsterdam";
};
}