diff options
author | nin <nineinchnade@gmail.com> | 2017-12-14 21:13:46 +0100 |
---|---|---|
committer | nin <nineinchnade@gmail.com> | 2017-12-14 21:13:46 +0100 |
commit | 9f6b78a0a5e55a52355d8c8b7dc4b4b11cb94072 (patch) | |
tree | a1337a8204a438c3039486f37ecfd7fee79f8ed2 /jeschli/2configs/default.nix | |
parent | 55c4389ce02a856e34711ecba078c709ad41c9b5 (diff) | |
parent | a95d6929ca8b54a2eec2b8a0bcd2ce71f835cf15 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'jeschli/2configs/default.nix')
-rw-r--r-- | jeschli/2configs/default.nix | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/jeschli/2configs/default.nix b/jeschli/2configs/default.nix new file mode 100644 index 0000000..7fb2409 --- /dev/null +++ b/jeschli/2configs/default.nix @@ -0,0 +1,66 @@ +{ config, pkgs, ... }: +with import <stockholm/lib>; +{ + imports = [ + ./vim.nix + ./retiolum.nix + { + environment.variables = { + NIX_PATH = mkForce "secrets=/var/src/stockholm/null:/var/src"; + }; + } + ]; + + nixpkgs.config.allowUnfree = true; + + environment.systemPackages = with pkgs; [ + #stockholm + git + gnumake + jq + parallel + proot + populate + + #style + most + rxvt_unicode.terminfo + + #monitoring tools + htop + iotop + + #network + iptables + iftop + + #stuff for dl + aria2 + + #neat utils + file + kpaste + krebspaste + mosh + pciutils + psmisc + # q + # rs + tmux + untilport + usbutils + # logify + goify + + #unpack stuff + p7zip + unzip + unrar + + (pkgs.writeDashBin "sshn" '' + ${pkgs.openssh}/bin/ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "$@" + '') + ]; + + krebs.enable = true; +} |