31 lines
579 B
Nix
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;
|
|
};
|
|
}
|