mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 00:13:55 -05:00
nixosModules: move tailscale config to hosts
This commit is contained in:
parent
e2c9c12c10
commit
58b248367c
|
@ -4,7 +4,11 @@
|
|||
pkgs,
|
||||
...
|
||||
}: {
|
||||
age.secrets.wifi.file = ../secrets/wifi.age;
|
||||
age.secrets = {
|
||||
tailscaleAuthKey.file = ../secrets/tailscale/authKeyFile.age;
|
||||
wifi.file = ../secrets/wifi.age;
|
||||
};
|
||||
|
||||
environment.variables.FLAKE = "github:alyraffauf/nixcfg";
|
||||
|
||||
fileSystems = lib.attrsets.optionalAttrs (config.networking.hostName != "mauville") {
|
||||
|
@ -118,4 +122,10 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
authKeyFile = config.age.secrets.tailscaleAuthKey.path;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -39,8 +39,6 @@
|
|||
enable = true;
|
||||
syncMusic = false;
|
||||
};
|
||||
|
||||
tailscale.enable = true;
|
||||
};
|
||||
|
||||
users = {
|
||||
|
|
|
@ -44,10 +44,7 @@
|
|||
hyprland.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
services.syncthing.enable = true;
|
||||
|
||||
users.aly = {
|
||||
enable = true;
|
||||
|
|
|
@ -58,10 +58,7 @@
|
|||
steam.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
flatpak.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
services.flatpak.enable = true;
|
||||
|
||||
users = {
|
||||
aly = {
|
||||
|
|
|
@ -136,8 +136,6 @@ in {
|
|||
syncMusic = true;
|
||||
musicPath = "${mediaDirectory}/Music";
|
||||
};
|
||||
|
||||
tailscale.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -42,10 +42,7 @@
|
|||
hyprland.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
services.syncthing.enable = true;
|
||||
|
||||
users.aly = {
|
||||
enable = true;
|
||||
|
|
|
@ -20,9 +20,7 @@
|
|||
};
|
||||
|
||||
networking.hostName = "rustboro";
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
|
||||
zramSwap.memoryPercent = 100;
|
||||
|
||||
ar = {
|
||||
|
@ -41,10 +39,7 @@
|
|||
hyprland.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
syncthing.enable = true;
|
||||
tailscale.enable = true;
|
||||
};
|
||||
services.syncthing.enable = true;
|
||||
|
||||
users.aly = {
|
||||
enable = true;
|
||||
|
|
|
@ -67,8 +67,6 @@
|
|||
type = lib.types.str;
|
||||
};
|
||||
};
|
||||
|
||||
tailscale.enable = lib.mkEnableOption "Tailscale WireGuard VPN.";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,6 +7,5 @@
|
|||
imports = [
|
||||
./flatpak
|
||||
./syncthing
|
||||
./tailscale
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.ar.services.tailscale.enable {
|
||||
age.secrets.tailscaleAuthKey.file = ../../../secrets/tailscale/authKeyFile.age;
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
authKeyFile = config.age.secrets.tailscaleAuthKey.path;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue