feat: add localisation module

This commit is contained in:
2026-02-25 05:40:04 -05:00
parent db3ceb7eac
commit d229155898
3 changed files with 40 additions and 5 deletions

View File

@@ -23,6 +23,7 @@
inputs.self.nixosModules.tuigreet
inputs.self.nixosModules.workstation
inputs.self.nixosModules.initrd-ssh
inputs.self.nixosModules.localisation
];
yubikey.enable = true;
@@ -59,8 +60,11 @@
pkiBundle = "/var/lib/sbctl";
};
time.timeZone = "Europe/Ljubljana";
environment.variables.TZ = "Europe/Ljubljana";
localisation = {
enable = true;
timeZone = "Europe/Ljubljana";
defaultLocale = "en_US.UTF-8";
};
services.udisks2.enable = true;