tweak some shell aliases

auto-flake-update
Yorick van Pelt 2022-04-11 13:37:52 +02:00
parent 0e37e0bf13
commit 69646bff13
Signed by: yorick
GPG Key ID: A36E70F9DC014A15
2 changed files with 8 additions and 6 deletions

View File

@ -232,8 +232,15 @@ in {
l = "ls"; l = "ls";
ls = "exa"; ls = "exa";
nr = ''nix repl "<nixpkgs>"''; nr = ''nix repl "<nixpkgs>"'';
"n." = "nix repl .";
nsp = "nix-shell -p"; nsp = "nix-shell -p";
nsd = "nix show-derivation";
nb = "nix build";
nl = "nix log";
g = "git";
lumi = "pushd ~/engineering/lumi; cached-nix-shell; popd"; lumi = "pushd ~/engineering/lumi; cached-nix-shell; popd";
bc = "bluetoothctl connect 94:DB:56:79:7D:86";
bd = "bluetoothctl disconnect 94:DB:56:79:7D:86";
}; };
interactiveShellInit = '' interactiveShellInit = ''
set fish_greeting set fish_greeting

View File

@ -55,10 +55,6 @@ in {
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# v important.
cowsay # ponysay
ed # ed, man!
sl
rlwrap rlwrap
#vim #vim
@ -83,8 +79,6 @@ in {
which which
reptyr reptyr
tmux tmux
bc
mkpasswd
shadow shadow
# archiving # archiving
@ -101,6 +95,7 @@ in {
lftp lftp
wget wget
rsync rsync
arp-scan
#gitMinimal #gitMinimal
]; ];