MyNixOS website logo
option

services.reframe.configs

Configurations for ReFrame.

Declarations
Type
open submodule of attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))
Default
{ }
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";
      };
    };
  }
''