25 lines
299 B
Nix
25 lines
299 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
# List packages installed in system profile.
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
vim
|
|
vimPlugins.vim-nix
|
|
tmux
|
|
htop
|
|
zsh
|
|
btrfs-progs
|
|
git
|
|
python3
|
|
manpages
|
|
dnsutils
|
|
netcat
|
|
ntfs3g
|
|
file
|
|
nix-repl
|
|
];
|
|
}
|
|
|
|
|