linode-nixos-base/nixos-config/system-packages.nix
2024-12-29 15:42:43 -05:00

31 lines
579 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs;
[
# Install diagnostic tools for Linode support
inetutils
mtr
sysstat
# Base image packages
busybox
gnumake
neovim
wget
];
programs.zsh =
{
enable = true;
vteIntegration = true;
autosuggestions.enable = true;
enableCompletion = true;
ohMyZsh.enable = true;
syntaxHighlighting.enable = true;
};
}