mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
14 lines
308 B
Nix
14 lines
308 B
Nix
{ config, lib, ... }: with lib; {
|
|
options.hardware.displays = mkOption {
|
|
type = with types; attrsOf (submodule ({ config, ... }: {
|
|
options = {
|
|
pos = mkOption {
|
|
type = types.str;
|
|
};
|
|
res = mkOption {
|
|
type = types.str;
|
|
};
|
|
};
|
|
}));
|
|
};
|
|
}
|