mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-05-17 00:05:08 +02:00
Support configuration of sway outputs
This commit is contained in:
parent
730b5df5ee
commit
b07063c566
2 changed files with 7 additions and 0 deletions
|
|
@ -25,5 +25,11 @@ with builtins; {
|
|||
default = null;
|
||||
};
|
||||
};
|
||||
|
||||
extraInfo.outputs = mkOption {
|
||||
type = types.attrsOf (types.attrsOf types.str);
|
||||
description = "Description of the outputs";
|
||||
default = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -154,6 +154,7 @@ in {
|
|||
);
|
||||
in
|
||||
builtins.listToAttrs inputsCfg;
|
||||
output = config.extraInfo.outputs;
|
||||
fonts = common.mkFont cfg.font;
|
||||
window = {
|
||||
titlebar = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue