1
Fork 0
satellite/modules/applications/misc.nix
2020-10-30 13:37:31 +02:00

61 lines
1.3 KiB
Nix

{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [
# cmd stuff
tree # print a file structure
exa # ls replacement
mkpasswd # hash passwords
gnupg
typespeed # speed typing game
unixtools.xxd # to dump binary stuff into a text file (used it for a ctf)
youtube-dl # download from youtube
neofetch # display system information
xclip # copy paste stuff
feh # image viewer
unzip # for working with .zip files
speedtest-cli # test the internet speed and stuff
openssl
pkgconfig
ngrok
hugo
# editors
# vscodium
vscode
vim
neovim
emacs
# chat apps
discord
# discord-canary
deluge
slack
tdesktop # telegram for the desktop
zoom-us
teams
# browsers
google-chrome
brave
firefox
# other stuff
milkytracker # music tracker thingy
spectacle # take screenshots
vlc # video player
gimp # image editing
korganizer # calendar
libreoffice # free office suite
# edopro # yugioh simulator (my derivation doesn't work yet)
akonadi
obs-studio # video recorder
# blueman # bluetooth manager
freesweep # minesweeper I can play w the keyboard.
# Nes emulators and stuff
zsnes
higan
fceux
];
}