mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 01:33:55 -05:00
tailscale: move to custom module
This commit is contained in:
parent
af5e52bb28
commit
17bb8bc596
|
@ -53,6 +53,7 @@
|
|||
};
|
||||
services = {
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -67,6 +67,7 @@ in {
|
|||
syncMusic = true;
|
||||
syncMusicPath = "${mediaDirectory}/Music";
|
||||
};
|
||||
tailscale.enable = true;
|
||||
};
|
||||
system = {
|
||||
plymouth.enable = true;
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
services = {
|
||||
flatpak.enable = true;
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -97,6 +97,7 @@ in {
|
|||
};
|
||||
services = {
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
};
|
||||
services = {
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
config,
|
||||
...
|
||||
}: {
|
||||
imports = [./binaryCache ./flatpak ./ollama ./syncthing];
|
||||
imports = [./binaryCache ./flatpak ./ollama ./syncthing ./tailscale];
|
||||
}
|
||||
|
|
17
nixosModules/services/tailscale/default.nix
Normal file
17
nixosModules/services/tailscale/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
alyraffauf.services.tailscale.enable = lib.mkEnableOption "Enable Tailscale";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.alyraffauf.services.tailscale.enable {
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -101,7 +101,6 @@
|
|||
openFirewall = true;
|
||||
};
|
||||
printing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
|
||||
security = {
|
||||
|
|
Loading…
Reference in a new issue