1
Fork 0
satellite/modules/applications/misc.nix

73 lines
1.5 KiB
Nix
Raw Normal View History

2020-04-08 18:36:58 +02:00
{ pkgs, ... }: {
2020-04-08 19:09:37 +02:00
home-manager.users.adrielus.home.packages = with pkgs; [
# cmd stuff
tree # print a file structure
exa # ls replacement
mkpasswd # hash passwords
2020-04-10 13:51:37 +02:00
gnupg
2021-07-18 01:58:38 +02:00
# typespeed # speed typing game
# unixtools.xxd # to dump binary stuff into a text file (used it for a ctf)
2020-11-09 16:13:52 +01:00
# youtube-dl # download from youtube
2020-05-13 11:34:15 +02:00
neofetch # display system information
2020-05-30 20:59:07 +02:00
xclip # copy paste stuff
2021-07-18 01:58:38 +02:00
# feh # image viewer
2020-10-07 10:11:03 +02:00
unzip # for working with .zip files
speedtest-cli # test the internet speed and stuff
2020-11-09 16:13:52 +01:00
# openssl
# pkgconfig
# ngrok
2021-07-18 01:58:38 +02:00
# hugo
2020-11-09 16:13:52 +01:00
unrar
# jdk11o
# jdk8
# gtk3
2021-07-18 01:58:38 +02:00
gnumake
# unison-ucm
xorg.libX11
texlive.combined.scheme-full
okular
zathura
cmake
# editors
2020-10-07 10:11:03 +02:00
# vscodium
vscode
vim
neovim
2020-11-09 16:13:52 +01:00
# emacs
# chat apps
2020-04-08 18:36:58 +02:00
discord
2020-10-07 10:11:03 +02:00
# discord-canary
2020-11-09 16:13:52 +01:00
# deluge
2020-04-09 12:11:58 +02:00
slack
tdesktop # telegram for the desktop
zoom-us
2020-11-09 16:13:52 +01:00
# teams
2020-04-12 12:45:29 +02:00
# browsers
google-chrome
2020-04-12 12:45:29 +02:00
brave
2020-10-07 10:11:03 +02:00
firefox
2020-04-12 12:45:29 +02:00
# other stuff
2020-11-09 16:13:52 +01:00
# milkytracker # music tracker thingy
spectacle # take screenshots
2020-04-14 20:51:22 +02:00
vlc # video player
2020-05-10 19:48:52 +02:00
gimp # image editing
2020-11-09 16:13:52 +01:00
# korganizer # calendar
libreoffice # free office suite
# edopro # yugioh simulator (my derivation doesn't work yet)
2020-11-09 16:13:52 +01:00
# akonadi
2021-07-18 01:58:38 +02:00
obs-studio # video recorder
2020-10-07 10:11:03 +02:00
# blueman # bluetooth manager
2020-11-09 16:13:52 +01:00
# freesweep # minesweeper I can play w the keyboard.
# multimc
2020-10-07 10:11:03 +02:00
# Nes emulators and stuff
2020-11-09 16:13:52 +01:00
# zsnes
# higan
# fceux
2020-04-08 18:36:58 +02:00
];
}