nixos/tower: Add wireshark and Tailscale shell abbrev

This commit is contained in:
Jack O'Sullivan 2023-12-23 00:49:24 +00:00
parent f58b71e8d3
commit b1af3dbf18

View File

@ -116,6 +116,10 @@
programs = { programs = {
steam.enable = true; steam.enable = true;
wireshark = {
enable = true;
package = pkgs.wireshark-qt;
};
}; };
networking = { networking = {
@ -171,6 +175,14 @@
packages = with pkgs; [ ]; packages = with pkgs; [ ];
}; };
programs = {
fish = {
shellAbbrs = {
tsup = "doas tailscale up --login-server=https://ts.nul.ie --accept-routes";
};
};
};
services = { services = {
blueman-applet.enable = true; blueman-applet.enable = true;
}; };