diff options
author | sils <sils@sils.li> | 2023-04-20 18:25:45 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-04-20 18:31:19 +0200 |
commit | 8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4 (patch) | |
tree | bd77dade79e8c7e6f6f3a136d53fd5518d9ffcb9 /common/packages/default.nix | |
parent | Feat(packages.nix): Add pinentry (diff) | |
download | nix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.tar.gz nix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.zip |
Feat(structure): Restructured repository
This is mainly convenience and my personal preference.
Diffstat (limited to 'common/packages/default.nix')
-rw-r--r-- | common/packages/default.nix | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/common/packages/default.nix b/common/packages/default.nix new file mode 100644 index 0000000..3fd53b4 --- /dev/null +++ b/common/packages/default.nix @@ -0,0 +1,99 @@ +{ + pkgs, + lib, + ... +}: { + environment.systemPackages = with pkgs; [ + # Core utils + killall # kill programs by name + wget # download stuff + curl # download stuff – reloaded + fd # faster find + neofetch # a must-have + zsh # the one and only shell + + # archives + unzip + zip + _7zz + + neovim # edit nix files ;) + inkscape # vector graphics + + restic # backups + thunderbird # emails + firefox # my browser + librewolf # privacy friendly firefox + ungoogled-chromium # the only chromium-based browser I'd ever use. + google-chrome # breaking promises + element-desktop # chat + libreoffice # convert doc to pdf xD + + keepassxc # passwords + bitwarden # cloud passwords + + gnome.gnome-keyring # to tired to migrate to kwallet + gnome.simple-scan # scanning, obiously + lsd # ls in good + jq # xdg-ninja requieres that + glow # markdown rendering + xdg-ninja # home cleaning + git # versioning + signal-desktop # the ecosystem is moving :( + signal-cli # use signal without phone + mumble # voice chat + + #Nix Stuff + alejandra # nix code formatter + nil # nix language-server + statix # nix linter + + # SSH Stuff + openssh # ssh + mosh # ssh in great + + jdk17 # openjdk17 to satisfy mr.antoine + rustc # rust, obiously + cargo # cargo, the best compiler ever" + lf # a file manager + + gnupg # encryprtion and so on + pinentry # needed for gpg + + tor-browser-bundle-bin # tor-browser + tdesktop # another messenger (telegram) + libsForQt5.kdeconnect-kde # communicate with my phone + imagemagick # convertion and so on + #nerdfonts # nice fonts, u know + alacritty # terminal + konsole # terminal + + zsh-you-should-use # reminder for aliasses + jetbrains.idea-community # Java-IDE + python39 # python programming language + sayonara # audioplayer + vlc # audio, again + nmap # network scanning + tree # tree view of directories + youtube-dl # download videos + mpv # play videos + texlive.combined.scheme-full # LaTeX + gparted # partitioning :( + musescore # notesetting program + geogebra # math program + # Compiler + gcc + execline + + ltex-ls # lsp language server for languagetool + texlab # latex language server + html-tidy # html formatter + + bottles # run windows software + ]; + nixpkgs.config.allowUnfreePredicate = pkg: + builtins.elem (lib.getName pkg) [ + "geogebra" + "google-chrome" + ]; +} |