Files
nixos/radish/host.nix
2024-11-04 12:43:09 +02:00

11 lines
231 B
Nix

{ lib, ... }:
{
networking.hostName = "radish";
time.timeZone = lib.mkForce null; # allow TZ to be set by desktop user
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
}