1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

chore: add kitty terminfo for all systems

This commit is contained in:
oddlama 2023-09-24 19:49:17 +02:00
parent 20207213c7
commit a1c26b127a
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 9 additions and 3 deletions

View file

@ -1,8 +1,15 @@
{lib, ...}: {
{
lib,
pkgs,
...
}: {
# Disable sudo which is entierly unnecessary.
security.sudo.enable = false;
time.timeZone = lib.mkDefault "Europe/Berlin";
i18n.defaultLocale = "C.UTF-8";
console.keyMap = "de-latin1-nodeadkeys";
# Install the kitty terminfo package for all systems.
environment.systemPackages = [pkgs.kitty.terminfo];
}