nix-da/options/system/outputs.nix
2025-04-04 22:38:05 +02:00

43 lines
823 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption;
inherit (lib.types)
attrsOf
submodule
int
float
str
;
in
{
options.modules.system.outputs = mkOption {
type = attrsOf (
submodule (
{ name, ... }:
{
options = {
name = mkOption {
type = str;
default = name;
};
scale = mkOption {
type = float;
default = 1.0;
};
posX = mkOption {
type = int;
default = 0;
};
posY = mkOption {
type = int;
default = 0;
};
resX = mkOption { type = int; };
resY = mkOption { type = int; };
};
}
)
);
default = { };
};
}