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 =
[
./hardware-configuration.nix
../common/tailscale.nix
../common/security.nix
];
boot.loader = {
@ -41,9 +43,9 @@
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
KbdInteractiveAuthentication = false;
settings = {
PasswordAuthentication = true;
KbdInteractiveAuthentication = false;
};
};

View file

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

View file

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

View file

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