24 lines
309 B
Nix
24 lines
309 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
|
||
|
gnomeExtensions.appindicator
|
||
|
uwufetch
|
||
|
];
|
||
|
}
|