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>
12 lines
187 B
Nix
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
|
|
];
|
|
}
|