New Nix config

This commit is contained in:
2025-12-16 14:55:04 -07:00
parent b475d40718
commit 10233a29ca
15 changed files with 152 additions and 93 deletions

View File

@@ -1,9 +1,12 @@
{ config, pkgs, ... }:
let
settings = import ../settings.nix;
in
{
# Time zone
time.timeZone = "America/Edmonton";
time.timeZone = settings.timezone;
# Internationalization properties
i18n.defaultLocale = "en_CA.UTF-8";
i18n.defaultLocale = settings.locale;
}