NixOSDots/modules/common/environment.nix
2026-02-18 15:24:28 +01:00

32 lines
557 B
Nix

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