NixOSDots/modules/common/environment.nix
2026-01-16 11:25:20 +01:00

25 lines
382 B
Nix

{ pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
# Text editors
neovim
vim
# Sytem utilities
wget
git
tree
btop
eza
fastfetch
ffmpeg
fzf
netcat
tmux
gnupg
cmatrix
gh
];
};
}