feat: init tailscale

This commit is contained in:
notohh 2023-03-01 03:47:59 -05:00
parent c2e59325c3
commit b6a8425353
Signed by: notohh
GPG key ID: BD47506D475EE86D
6 changed files with 18 additions and 4 deletions

View file

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

View file

@ -4,6 +4,8 @@
imports = imports =
[ [
./hardware-configuration.nix ./hardware-configuration.nix
../common/tailscale.nix
../common/security.nix
]; ];
boot.loader = { boot.loader = {

View file

@ -4,6 +4,8 @@
imports = imports =
[ [
./hardware-configuration.nix ./hardware-configuration.nix
../common/tailscale.nix
../common/security.nix
]; ];
boot.loader = { boot.loader = {

View file

@ -5,7 +5,8 @@
[ [
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/home/wayland ../../modules/home/wayland
../../modules/security.nix ../common/security.nix
../common/tailscale.nix
]; ];
# bootloader # bootloader

View file

@ -9,4 +9,5 @@
./home/git ./home/git
./home/lazygit ./home/lazygit
]; ];
} }