blob: 93ec0c571b7f1db2b79dc7158b4577efdd8edf43 (
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
|
{pkgs, ...}: {
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
simple-scan # scanning, obiously
git # versioning
# SSH Stuff
openssh # ssh
mosh # ssh in great
zsh-you-should-use # reminder for aliasses
adwaita-icon-theme
];
}
|