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