forked from mirrors_public/oddlama_nix-config
18 lines
492 B
Nix
18 lines
492 B
Nix
{ pkgs, ... }:
|
|
{
|
|
documentation.nixos.enable = false;
|
|
|
|
# Disable sudo which is entirely unnecessary.
|
|
security.sudo.enable = false;
|
|
services.dbus.implementation = "broker";
|
|
|
|
time.timeZone = "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 ];
|
|
|
|
# And a reasonable inputrc please
|
|
environment.etc."inputrc".source = ./inputrc;
|
|
}
|