summary refs log tree commit diff stats
path: root/packages.nix
blob: ed8f9b07e630c1c52fc4245301136ebbc1c0053f (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
  config,
  pkgs,
  ...
}: {
  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

    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.
    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 :(
    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
    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
    _7zz # 7zip archive utility
    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

    # Compiler
    gcc
    execline

    ltex-ls # lsp language server for languagetool
    texlab # latex language server
    html-tidy # html formatter
  ];
}