Files
dotfiles/steamdeck/tailscale.nix
uttarayan21 613cee2bf7 feat: Added tailscale overrides
Signed-off-by: uttarayan21 <email@uttarayan.me>
2025-05-04 03:58:44 +05:30

16 lines
211 B
Nix

{
pkgs,
config,
...
}: {
home.packages = [
(pkgs.tailscale.overrideAttrs (old: {
postInstall =
old.postInstall
+ ''
cp -r $out/lib $out/etc
'';
}))
];
}