nix/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/waybar/scripts/waybar-scripts.nix

11 lines
256 B
Nix
Raw Normal View History

2023-08-28 12:35:59 +02:00
{...}: {
home.file = {
".config/waybar/scripts/tailscale.sh" = {
enable = true;
executable = true;
text = ''
tailscale status --json | jq -r '.BackendState'
'';
2023-08-28 12:39:04 +02:00
};
};
2023-08-28 12:35:59 +02:00
}