2024-01-18 20:12:43 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let cfg = config.jopejoe1.zerotierone;
|
|
|
|
in {
|
|
|
|
options.jopejoe1.zerotierone = {
|
|
|
|
enable = lib.mkEnableOption "Enable zerotierone";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
services.zerotierone.enable = true;
|
2024-02-01 16:35:17 +01:00
|
|
|
services.zerotierone.joinNetworks = [ "9e1948db638e9f93" ] ++ lib.optional (config.networking.hostName == "kuraokami") "7c31a21e86f9a75c";
|
2024-02-01 16:29:59 +01:00
|
|
|
services.zerotierone.port = 9993;
|
2024-01-18 20:12:43 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
moonlight-qt
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|