blob: ed5c1c5c3dddd114d30f8a260f7909b05d25ef13 (
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
|
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
# Core utils
killall # kill programs by name
wget # download stuff
curl # download stuff – reloaded
zsh # the one and only shell
neovim # edit nix files ;)
restic # backups
gnome.gnome-keyring # to tired to migrate to kwallet
gnome.simple-scan # scanning, obiously
git # versioning
# SSH Stuff
openssh # ssh
mosh # ssh in great
libsForQt5.kdeconnect-kde # communicate with my phone
#nerdfonts # nice fonts, u know
zsh-you-should-use # reminder for aliasses
];
}
|