nyx/modules/nixos/services/tailscale.nix

9 lines
131 B
Nix
Raw Normal View History

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