Files
nixos-config/modules/system/packages.nix
Mans Ziesel c147d679ff Add system-wide vim and tmux configuration
vim and tmux are now configured via programs.vim / programs.tmux so settings
apply to all users via /etc/vimrc and /etc/tmux.conf. Removes them from
systemPackages (installed by the modules) and drops the redundant
home-manager tmux block.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-23 17:14:13 +02:00

12 lines
187 B
Nix

{ pkgs, ... }:
{
# System-wide packages. User-specific tools belong in home-manager.
environment.systemPackages = with pkgs; [
# editors / shell
git
wget
curl
];
}