nyx/modules/nixos/services/tailscale.nix

9 lines
131 B
Nix
Raw Normal View History

2024-12-05 16:21:51 +02:00
{ pkgs, ... }: {
services.tailscale = {
enable = true;
};
environment.systemPackages = with pkgs; [
trayscale
];
}