MyNixOS website logo

Attribute set of profiles.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  undocked = {
    outputs = [
      {
        criteria = "eDP-1";
      }
    ];
  };
  docked = {
    outputs = [
      {
        criteria = "eDP-1";
      }
      {
        criteria = "Some Company ASDF 4242";
        transform = "90";
      }
    ];
  };
}