Convert tmux config to Nix and personalize system configuration

This commit is contained in:
2026-04-07 04:46:00 +02:00
parent 4bdcde72eb
commit 1b69e0d2a4
10 changed files with 171 additions and 122 deletions

View File

@@ -15,7 +15,6 @@
environment.systemPackages = with pkgs; [
git
curl
wget
vim
htop
];
@@ -35,10 +34,9 @@
# System-wide locale
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "UTC";
time.timeZone = "Europe/Berlin";
# Networking basics
networking.useDHCP = lib.mkDefault true;
networking.networkmanager.enable = lib.mkDefault false;
}