Overhaul luna complete
This commit is contained in:
parent
06f5971965
commit
6f9fdca876
110 changed files with 2408 additions and 2129 deletions
21
modules/network/tailscale.nix
Normal file
21
modules/network/tailscale.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf mkOption types;
|
||||
cfg = config.horseman.network.tailscale;
|
||||
in {
|
||||
options = {
|
||||
horseman.network.tailscale = {
|
||||
enable = mkEnableOption "Enable the Tailscale VPN service";
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
services.tailscale.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue