nixos/monado: init

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-07-23 11:36:49 +02:00
parent 33020597a3
commit 5d57df8a80
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
3 changed files with 76 additions and 0 deletions

View File

@ -77,6 +77,8 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
- [go-camo](https://github.com/cactus/go-camo), a secure image proxy server. Available as [services.go-camo](#opt-services.go-camo.enable).
- [Monado](https://monado.freedesktop.org/), an open source XR runtime. Available as [services.monado](#opt-services.monado.enable).
- [Clevis](https://github.com/latchset/clevis), a pluggable framework for automated decryption, used to unlock encrypted devices in initrd. Available as [boot.initrd.clevis.enable](#opt-boot.initrd.clevis.enable).
- [TuxClocker](https://github.com/Lurkki14/tuxclocker), a hardware control and monitoring program. Available as [programs.tuxclocker](#opt-programs.tuxclocker.enable).

View File

@ -547,6 +547,7 @@
./services/hardware/lcd.nix
./services/hardware/lirc.nix
./services/hardware/nvidia-container-toolkit-cdi-generator
./services/hardware/monado.nix
./services/hardware/nvidia-optimus.nix
./services/hardware/openrgb.nix
./services/hardware/pcscd.nix

View File

@ -0,0 +1,73 @@
{ config
, lib
, pkgs
, ...
}:
let
inherit (lib) mkDefault mkEnableOption mkIf mkPackageOption;
cfg = config.services.monado;
in
{
options.services.monado = {
enable = mkEnableOption "Monado wrapper and user service";
package = mkPackageOption pkgs "monado" { };
};
config = mkIf cfg.enable {
security.wrappers."monado-service" = {
setuid = false;
owner = "root";
group = "root";
# cap_sys_nice needed for asynchronous reprojection
capabilities = "cap_sys_nice+eip";
source = "${cfg.package}/bin/monado-service";
};
systemd.user = {
services.monado = {
description = "Monado XR runtime service module";
requires = [ "monado.socket" ];
conflicts = [ "monado-dev.service" ];
unitConfig.ConditionUser = "!root";
environment = {
# Default options
# https://gitlab.freedesktop.org/monado/monado/-/blob/4548e1738591d0904f8db4df8ede652ece889a76/src/xrt/targets/service/monado.in.service#L12
XRT_COMPOSITOR_LOG = mkDefault "debug";
XRT_PRINT_OPTIONS = mkDefault "on";
IPC_EXIT_ON_DISCONNECT = mkDefault "off";
};
serviceConfig = {
ExecStart = "${config.security.wrapperDir}/monado-service";
Restart = "no";
};
restartTriggers = [ cfg.package ];
};
sockets.monado = {
description = "Monado XR service module connection socket";
conflicts = [ "monado-dev.service" ];
unitConfig.ConditionUser = "!root";
socketConfig = {
ListenStream = "%t/monado_comp_ipc";
RemoveOnStop = true;
};
restartTriggers = [ cfg.package ];
wantedBy = [ "sockets.target" ];
};
};
environment.systemPackages = [ cfg.package ];
};
meta.maintainers = with lib.maintainers; [ Scrumplex ];
}