diff --git a/home/fish/default.nix b/home/fish/default.nix index 6fa9f00..b415982 100644 --- a/home/fish/default.nix +++ b/home/fish/default.nix @@ -22,6 +22,16 @@ in { programs.fish = { enable = true; + shellAliases = { + "bt" = "bluetoothctl"; + }; + shellAbbrs = { + "bton" = "bluetoothctl power on"; + "btoff" = "bluetoothctl power off"; + "btcon" = "bluetoothctl connect"; + "btdis" = "bluetoothctl disconnect"; + "btinfo" = "bluetoothctl info"; + }; }; xdg.configFile."fish/functions" = {source = ./. + "/functions";};