diff options
author | tv <tv@krebsco.de> | 2021-06-18 20:53:44 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-06-18 20:53:44 +0200 |
commit | 5211b94619e2c2aec83e61da526d009ea2f6e1dc (patch) | |
tree | 7c667ebf9c20ca6f5d097da11b140789ca0fa868 /lass/2configs | |
parent | 9e59a65d920e0e2aa23c5cf1b98fe32860b42422 (diff) | |
parent | 985ba7c82d3400de322bfa2de7a82349e080f114 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'lass/2configs')
-rw-r--r-- | lass/2configs/default.nix | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/lass/2configs/default.nix b/lass/2configs/default.nix index 193f4bef1..adfeef19d 100644 --- a/lass/2configs/default.nix +++ b/lass/2configs/default.nix @@ -106,7 +106,6 @@ with import <stockholm/lib>; jq #style - most rxvt_unicode.terminfo #monitoring tools @@ -117,6 +116,7 @@ with import <stockholm/lib>; iptables iftop tcpdump + mosh #stuff for dl aria2 @@ -125,29 +125,31 @@ with import <stockholm/lib>; file hashPassword kpaste - krebspaste - mosh pciutils pop - psmisc q rs - tmux untilport usbutils logify goify #unpack stuff - p7zip - unzip - unrar + libarchive (pkgs.writeDashBin "sshn" '' ${pkgs.openssh}/bin/ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "$@" '') ]; + environment.shellAliases = { + ll = "ls -l"; + la = "ls -la"; + ls = "ls --color"; + ip = "ip -color=auto"; + grep = "grep --color=auto"; + }; + programs.bash = { enableCompletion = true; interactiveShellInit = '' |