add nixos module but good

This commit is contained in:
Aubrey 2024-12-22 00:31:20 -06:00
parent f1194c752c
commit 0dc1bf6c36
No known key found for this signature in database

View file

@ -48,67 +48,70 @@
openssl openssl
]; ];
}; };
formatter = pkgs.alejandra;
packages.default = craneLib.buildPackage (commonArgs packages.default = craneLib.buildPackage (commonArgs
// { // {
cargoArtifacts = craneLib.buildDepsOnly commonArgs; cargoArtifacts = craneLib.buildDepsOnly commonArgs;
}); });
nixosModules.default = with lib; { config, ... }: { formatter = alejandra;
}
)
// {
nixosModules.default = {config, lib, pkgs, system, ...}: {
options.services.smo-server = { options.services.smo-server = {
enable = mkEnableOption "a game server for Super Mario Odyssey Online"; enable = lib.mkEnableOption "a game server for Super Mario Odyssey Online";
user = mkOption { user = lib.mkOption {
type = lib.types.string; type = lib.types.string;
description = "The user to start the server with"; description = "The user to start the server with";
}; };
enableFaker = mkOption { enableFaker = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
example = true; example = true;
description = "Whether to enable the test bot for solo development."; description = "Whether to enable the test bot for solo development.";
}; };
tcpPort = mkOption { tcpPort = lib.mkOption {
type = lib.types.port; type = lib.types.port;
default = 1027; default = 1027;
description = "The TCP port to host the server on"; description = "The TCP port to host the server on";
}; };
udpPort = mkOption { udpPort = lib.mkOption {
type = lib.types.port; type = lib.types.port;
default = 1027; default = 1027;
description = "The UDP port to host the server on"; description = "The UDP port to host the server on";
}; };
proximity = { proximity = {
type = lib.types.attrs; type = lib.types.attrs;
port = { port = lib.mkOption {
type = lib.types.port; type = lib.types.port;
example = 4433; example = 4433;
description = "The UDP port to host the proximity chat server on"; description = "The UDP port to host the proximity chat server on";
}; };
certPath = { certPath = lib.mkOption {
type = lib.types.path; type = lib.types.path;
example = "cert.pem"; example = "cert.pem";
description = "The certificate used for encrypting the WebTransport stream"; description = "The certificate used for encrypting the WebTransport stream";
}; };
keyPath = { keyPath = lib.mkOption {
type = lib.types.path; type = lib.types.path;
example = "cert.pem"; example = "cert.pem";
description = "The certificate used for encrypting the WebTransport stream"; description = "The certificate used for encrypting the WebTransport stream";
}; };
}; };
}; };
config = mkIf config.services.smo-server.enable { config = if config.services.smo-server.enable then {
systemd.services.smo-server = with services.smo-server; { systemd.services.smo-server = with config.services.smo-server; {
wantedBy = ["multi-user.target"]; wantedBy = ["multi-user.target"];
after = ["network.target"]; after = ["network.target"];
description = "Start smo-server"; description = "Start smo-server";
serviceConfig = { serviceConfig = {
WorkingDirectory = "${packages.default.outPath}"; WorkingDirectory = "${self.packages.${system}.default.outPath}";
Type = "simple"; Type = "simple";
ExecStart = let proxRes = 5; ExecStart = let
in ''${packages.default.outPath}/bin/smo-server -t ${tcpPort} -u ${udpPort} ${proxRes}''; proxRes = 5;
in ''${self.packages.${system}.default.outPath}/bin/smo-server -t ${tcpPort} -u ${udpPort}'';
}; };
}; };
} else {};
}; };
}; };
} }
);
}