mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00: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.
|
||||
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];
|
||||
}
|
||||
|
|
|
@ -17,8 +17,7 @@
|
|||
|
||||
# Do not wait for inherited child processes.
|
||||
close_on_child_death = "yes";
|
||||
|
||||
# Disable ligatures when the cursor is on them.
|
||||
# Only disable ligatures when the cursor is on them.
|
||||
disable_ligatures = "cursor";
|
||||
|
||||
# Modified onehalfdark color scheme
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue