summary refs log tree commit diff stats
path: root/packages.nix
blob: 8ecae4f86e2867047bf3bad432bf7fae43f443eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ config, pkgs, ... }:

{

   environment.systemPackages = with pkgs; [
     neovim # edit nix files ;)
     neofetch # a must-have
     wget # download stuff
     curl # download stuff – reloaded
     restic # backups
     thunderbird # emails
     firefox # my browser
     zsh # the one and only shell
     element-desktop # chat
     libreoffice # convert doc to pdf xD
     keepassxc # 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 :(
     openssh # ssh
     jdk17 # openjdk17 to satisfy mr.antoine
     rustc # rust, obiously
     cargo # cargo, the best compiler ever"
     lf # a file manager
     gnupg # encryprtion and so on
     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
     zsh-you-should-use # reminder for aliasses
     jetbrains.idea-community # Java-IDE
     python39 # python programming language
   ];
}