aboutsummaryrefslogtreecommitdiffstats
path: root/sys/packages/default.nix
blob: d22baab6e8fb232bb8254f197bfc0af75eb53dfb (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
{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
  ];

  # until apps update their dependencies
  nixpkgs.config.permittedInsecurePackages = [
    "electron-39.8.10"
  ];
}