diff options
author | makefu <github@syntax-fehler.de> | 2021-08-05 21:20:17 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-08-05 21:20:17 +0200 |
commit | c177a49ca38b8c1022638deaff2dc4eefda655f3 (patch) | |
tree | 201c4245203da92228c99f0940871a996e2efee7 /lass/2configs/default.nix | |
parent | a072b9a49b6ee50bfdd57f62a3f60087e98c7c02 (diff) | |
parent | ba6a5456e8d76b9c1eae7cd81dca3f2b16359ba2 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/2configs/default.nix')
-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 = '' |