feat: add tailscale support and update timeZone

This commit is contained in:
Zhongheng Liu 2024-08-31 11:50:24 +03:00
commit 7db7922cd3
No known key found for this signature in database
5 changed files with 275 additions and 3 deletions

View file

@ -6,5 +6,6 @@
./misc.service.nix
./avahi.service.nix
./printing.service.nix
./tailscale.service.nix
];
}

View file

@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
services.tailscale = {
enable = true;
};
}