add nixpkgs-stable

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-09-13 23:08:10 +02:00
parent 3c7702789c
commit 1ace7442a1
6 changed files with 31 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
# Tailscale is a VPN service that works on top of WireGuard.
# It allows me to access my servers and devices from anywhere.
{pkgs, ...}: {
home.packages = with pkgs; [tailscale tailscale-systray];
{inputs, ...}: {
home.packages = with inputs.nixpkgs-stable.legacyPackages.x86_64-linux; [tailscale tailscale-systray];
# wayland.windowManager.hyprland.settings.exec-once = ["${pkgs.tailscale-systray}/bin/tailscale-systray"];
}