diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-01 15:36:31 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-01 15:36:31 -0500 |
| commit | 49d6eba0669d113143927b7fc547e24e24546bbd (patch) | |
| tree | 96816d8b5f40ec5dcf3782ca78db8872334a7cb9 /modules/services/options.nix | |
| parent | bd1e90c102b265e63b5c98b3b1393247d84f09f4 (diff) | |
tailscale
Diffstat (limited to 'modules/services/options.nix')
| -rw-r--r-- | modules/services/options.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/services/options.nix b/modules/services/options.nix index cda9299..ddf6f58 100644 --- a/modules/services/options.nix +++ b/modules/services/options.nix @@ -3,7 +3,7 @@ config, ... }: let - inherit (lib) mkEnableOption; + inherit (lib) mkOption mkEnableOption; in { options = { collinux.services = { @@ -11,6 +11,12 @@ in { enable = mkEnableOption "wifi"; iwd.enable = mkEnableOption "lightweight wifi daemon"; networkmanager.enable = mkEnableOption "heavier wifi daemon"; + tailscale = { + enable = mkEnableOption "tailscale"; + authKeyFile = mkOption { + type = "path"; + }; + }; }; audio = { enable = mkEnableOption "pipewire + wireplumber"; |
