blob: 0b177a0626afa6599b9f4a8569f80eb78b4267b6 (
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
|
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
neovim # edit nix files ;)
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
lsd # ls in good
jq # xdg-ninja requieres that
glow # markdown rendering
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
];
}
|