22 lines
275 B
Nix
22 lines
275 B
Nix
{ inputs, outputs, profile-config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
neovim
|
|
eza
|
|
zsh
|
|
git
|
|
zip
|
|
unzip
|
|
neofetch
|
|
fastfetch
|
|
wget
|
|
zoxide
|
|
python3
|
|
gcc
|
|
htop
|
|
networkmanager
|
|
uwufetch
|
|
];
|
|
}
|