Theia/Nyx: add tailscale

This commit is contained in:
blahai 2024-12-05 16:21:51 +02:00
parent 5c4c73eda2
commit e97df2e113
No known key found for this signature in database
3 changed files with 36 additions and 6 deletions

View file

@ -4,5 +4,6 @@
./vpn.nix
./pipewire.nix
./bluetooth.nix
./tailscale.nix
];
}

View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
services.tailscale = {
enable = true;
};
environment.systemPackages = with pkgs; [
trayscale
];
}