feat: init tailscale
This commit is contained in:
parent
c2e59325c3
commit
b6a8425353
6 changed files with 18 additions and 4 deletions
8
hosts/common/tailscale.nix
Normal file
8
hosts/common/tailscale.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
services.tailscale = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4,6 +4,8 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../common/tailscale.nix
|
||||||
|
../common/security.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
@ -41,9 +43,9 @@
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
PasswordAuthentication = true;
|
PasswordAuthentication = true;
|
||||||
KbdInteractiveAuthentication = false;
|
KbdInteractiveAuthentication = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../common/tailscale.nix
|
||||||
|
../common/security.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -9,4 +9,5 @@
|
||||||
./home/git
|
./home/git
|
||||||
./home/lazygit
|
./home/lazygit
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue