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:
parent
20207213c7
commit
a1c26b127a
2 changed files with 9 additions and 3 deletions
|
@ -1,8 +1,15 @@
|
||||||
{lib, ...}: {
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
# Disable sudo which is entierly unnecessary.
|
# Disable sudo which is entierly unnecessary.
|
||||||
security.sudo.enable = false;
|
security.sudo.enable = false;
|
||||||
|
|
||||||
time.timeZone = lib.mkDefault "Europe/Berlin";
|
time.timeZone = lib.mkDefault "Europe/Berlin";
|
||||||
i18n.defaultLocale = "C.UTF-8";
|
i18n.defaultLocale = "C.UTF-8";
|
||||||
console.keyMap = "de-latin1-nodeadkeys";
|
console.keyMap = "de-latin1-nodeadkeys";
|
||||||
|
|
||||||
|
# Install the kitty terminfo package for all systems.
|
||||||
|
environment.systemPackages = [pkgs.kitty.terminfo];
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,8 +17,7 @@
|
||||||
|
|
||||||
# Do not wait for inherited child processes.
|
# Do not wait for inherited child processes.
|
||||||
close_on_child_death = "yes";
|
close_on_child_death = "yes";
|
||||||
|
# Only disable ligatures when the cursor is on them.
|
||||||
# Disable ligatures when the cursor is on them.
|
|
||||||
disable_ligatures = "cursor";
|
disable_ligatures = "cursor";
|
||||||
|
|
||||||
# Modified onehalfdark color scheme
|
# Modified onehalfdark color scheme
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue