feat: Added tailscale overrides

Signed-off-by: uttarayan21 <email@uttarayan.me>
This commit is contained in:
uttarayan21
2025-05-04 03:58:44 +05:30
parent 7133046a8b
commit 613cee2bf7
3 changed files with 18 additions and 3 deletions

View File

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