11 lines
254 B
Nix
11 lines
254 B
Nix
|
{...}: {
|
||
|
home.file = {
|
||
|
".config/waybar/scripts/tailscale.sh" = {
|
||
|
enable = true;
|
||
|
executable = true;
|
||
|
text = ''
|
||
|
tailscale status --json | jq -r '.BackendState'
|
||
|
'';
|
||
|
}
|
||
|
}
|
||
|
}
|