mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
13 lines
210 B
Nix
13 lines
210 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fonts = [
|
|
pkgs.tamzen
|
|
];
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
|
time.timeZone = "Europe/London";
|
|
console = {
|
|
packages = [ pkgs.tamzen ];
|
|
keyMap = "uk";
|
|
};
|
|
}
|