aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/packages/default.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-05-04 19:56:25 +0200
committersils <sils@sils.li>2023-05-04 19:56:25 +0200
commitc97e69c6072168cc2db55f708ae910455639c9db (patch)
treee920bac70ea20389ce8c2cf83f995b5d0790afe1 /users/sils/packages/default.nix
parentFeat(sys/packages): Remove unfree programs (diff)
downloadnix-config-c97e69c6072168cc2db55f708ae910455639c9db.zip
Structure(sys,users): Move userpackages to user
Diffstat (limited to 'users/sils/packages/default.nix')
-rw-r--r--users/sils/packages/default.nix78
1 files changed, 75 insertions, 3 deletions
diff --git a/users/sils/packages/default.nix b/users/sils/packages/default.nix
index 103e978..96d0b51 100644
--- a/users/sils/packages/default.nix
+++ b/users/sils/packages/default.nix
@@ -1,6 +1,78 @@
{pkgs, ...}: {
- home.packages = [
- pkgs.styx
- pkgs.cmatrix
+ home.packages = with pkgs; [
+ # core tools
+ neofetch # a must-have
+ fd # fast find
+ lsd # ls in good
+ lf # file manager
+ alacritty # terminal
+ glow # markdown rendering
+ restic # backups
+ tree # tree view of directories
+ nmap # network scanning
+
+ # text production/office
+ libreoffice # graphical office suite
+ neovim # text editor
+ pdfarranger # gui for pdf arranging
+
+ # LaTeX
+ texlive.combined.scheme-full # LaTeX
+ texlab # latex language server
+
+ html-tidy # html formatter
+ ltex-ls # lsp language server for languagetool
+
+ musescore # notesetting program
+
+ # communication
+ signal-desktop # the ecosystem is moving :(
+ signal-cli # use signal without phone
+ mumble # voice chat
+ element-desktop # chat
+ tdesktop # telegram messenger
+ thunderbird # emails
+
+ # Browser
+ ungoogled-chromium # just in case
+ firefox # my browser
+ tor-browser-bundle-bin # tor-browser
+
+ # archives
+ unzip
+ zip
+ _7zz
+
+ # image editing
+ inkscape # vector graphics
+ imagemagick # powerful cli-tool
+
+ # multimedia
+ sayonara # audioplayer
+ vlc # audio and video
+ mpv # videos
+ youtube-dl # download videos
+
+ # Compiler
+ gcc
+ execline
+
+ # Programming Languages
+ rustc # rust
+ cargo # compiler for rust
+ jdk # java
+ python39 # python
+
+ # Nix Stuff
+ alejandra # nix code formatter
+ nil # nix language-server
+ statix # nix linter
+
+ keepassxc # password manager
+
+ styx # static site generator in nix
+ cmatrix # hacker tool
+
+ bottles # run windows software
];
}