mynixos-config/config/system.nix
2024-11-26 13:34:55 +01:00

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;
}