mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
0f11c14065
Osmscout-server includes a setting in its UI to create a systemd user service and socket to run the server on demand. This does not function correctly on NixOS, for two reasons: 1. It assumes that the binary path is stable (e.g. /usr/bin/osmscout-server), which is not the case on NixOS. 2. It auto-detects the unwrapped binary path, which doesn't work. This module allows the user to access the same functionality on NixOS.
76 lines
1.8 KiB
Nix
76 lines
1.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.services.osmscout-server;
|
|
in {
|
|
meta.maintainers = [ maintainers.Thra11 ];
|
|
|
|
options = {
|
|
services.osmscout-server = {
|
|
enable = mkEnableOption "OSM Scout Server";
|
|
|
|
package = mkPackageOption pkgs "osmscout-server" { };
|
|
|
|
network = {
|
|
startWhenNeeded = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Enable systemd socket activation.
|
|
'';
|
|
};
|
|
|
|
listenAddress = mkOption {
|
|
type = types.str;
|
|
default = "127.0.0.1";
|
|
description = ''
|
|
The address for the server to listen on.
|
|
'';
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 8553;
|
|
description = ''
|
|
The TCP port on which the server will listen.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.osmscout-server" pkgs
|
|
lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.osmscout-server = {
|
|
Unit = { Description = "OSM Scout Server"; };
|
|
|
|
Install = mkIf (!cfg.network.startWhenNeeded) {
|
|
WantedBy = [ "default.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "'${cfg.package}/bin/osmscout-server' --systemd --quiet";
|
|
};
|
|
};
|
|
|
|
systemd.user.sockets.osmscout-server = mkIf cfg.network.startWhenNeeded {
|
|
Unit = { Description = "OSM Scout Server Socket"; };
|
|
|
|
Socket = {
|
|
ListenStream =
|
|
"${cfg.network.listenAddress}:${toString cfg.network.port}";
|
|
TriggerLimitIntervalSec = "60s";
|
|
TriggerLimitBurst = 1;
|
|
};
|
|
|
|
Install = { WantedBy = [ "sockets.target" ]; };
|
|
};
|
|
|
|
home.packages = [ cfg.package ];
|
|
};
|
|
}
|