NixOSDots/modules/common/environment.nix
2026-03-01 12:08:27 +01:00

33 lines
573 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
sbctl
# Browser
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
];
variables = {
EDITOR = "nvim";
};
};
}