Files
dotfiles/steamdeck/tailscale.nix
uttarayan21 13dedfa654 feat: Added stuff from steamdeck
Signed-off-by: uttarayan21 <email@uttarayan.me>
2025-05-04 05:53:14 +05:30

17 lines
181 B
Nix

{
pkgs,
config,
...
}: {
imports = [
../modules/home/tailscale.nix
];
services.tailscale = {
enable = false;
};
home.packages = [
pkgs.tailscale
];
}