Files
dotfiles/darwin/kuro/services/tailscale.nix
uttarayan21 e6e4a58d70
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(tailscale): use stable package
feat(zed): add stable package to zed editor config
fix(mbsync): enable mbsync only on linux
2025-12-16 15:11:24 +05:30

7 lines
108 B
Nix

{stablePkgs, ...}: {
services.tailscale = {
enable = true;
package = stablePkgs.tailscale;
};
}