NixOSDots/modules/common/environment.nix
2026-02-06 11:21:59 +01:00

28 lines
424 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
];
variables = {
EDITOR = "nvim";
};
};
}