30 lines
376 B
Nix
30 lines
376 B
Nix
|
{pkgs, ...}: {
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
home-manager
|
||
|
vim
|
||
|
firefox
|
||
|
bat
|
||
|
byobu
|
||
|
curl
|
||
|
git
|
||
|
fd
|
||
|
flameshot
|
||
|
fishPlugins.done
|
||
|
fishPlugins.fzf-fish
|
||
|
fishPlugins.forgit
|
||
|
fzf
|
||
|
google-chrome
|
||
|
lua
|
||
|
microsoft-edge
|
||
|
ripgrep
|
||
|
starship
|
||
|
terminator
|
||
|
thunderbird
|
||
|
tmux
|
||
|
vlc
|
||
|
wget
|
||
|
zoom-us
|
||
|
];
|
||
|
}
|