NixOSDots/modules/common/environment.nix
2026-02-08 17:12:07 +01:00

31 lines
530 B
Nix

{ pkgs, inputs, ... }:
{
environment = {
systemPackages = with pkgs; [
# Text editors
neovim
vim
# Sytem utilities
ripgrep
wget
git
tree
btop
eza
fastfetch
ffmpeg
fzf
netcat
tmux
gnupg
cmatrix
gh
# Browser
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
];
variables = {
EDITOR = "nvim";
};
};
}