Files
bitbloxhub 1a12081336 nixos/reframe: switch to freeformType
Simpler than maintaining and documenting the whole option schema,
thanks @isabelroses!

Assisted-by: pi:gpt-5.3-codex
2026-05-18 17:40:52 +00:00

84 lines
2.1 KiB
Nix

{
lib,
pkgs,
config,
...
}:
let
cfg = config.services.reframe;
settingsFormat = pkgs.formats.ini { };
in
{
options.services.reframe = {
enable = lib.mkEnableOption "DRM/KMS based remote desktop for Linux that supports Wayland/NVIDIA/headless/login…";
package = lib.mkPackageOption pkgs "reframe" { };
configs = lib.mkOption {
type = lib.types.submodule {
freeformType = settingsFormat.type;
};
default = { };
description = "Configurations for ReFrame";
example = ''
{
main = {
reframe = {
card = "card0";
connector = "eDP-1";
rotation = 0;
desktop-width = 1920;
desktop-height = 1080;
monitor-x = 0;
monitor-y = 0;
default-width = 1920;
default-height = 1080;
resize = true;
cursor = true;
wakeup = true;
damage = "cpu";
fps = 30;
};
vnc = {
ip = "0.0.0.0";
port = 5933;
password = "password";
type = "libvncserver";
};
};
}
'';
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
systemd.packages = [ cfg.package ];
systemd.tmpfiles.packages = [ cfg.package ];
users.users.reframe = {
isSystemUser = true;
group = "reframe";
description = "ReFrame Remote Desktop";
};
users.groups.reframe = { };
environment.etc = lib.mapAttrs' (
name: value:
lib.nameValuePair "reframe/${name}.conf" {
mode = "0644";
user = "root";
group = "root";
source = settingsFormat.generate "${name}.conf" value;
}
) cfg.configs;
systemd.services = lib.mapAttrs' (
name: _:
lib.nameValuePair "reframe-server@${name}" {
wantedBy = [ "multi-user.target" ];
}
) cfg.configs;
};
meta.maintainers = with lib.maintainers; [
bitbloxhub
];
}