10 lines
161 B
Nix
10 lines
161 B
Nix
{ lib, pkgs, ... }:
|
|
let
|
|
tailscale = lib.attrByPath [ "tailscale" ] null pkgs;
|
|
in
|
|
{
|
|
home.packages = builtins.filter (pkg: pkg != null) [
|
|
tailscale
|
|
];
|
|
}
|