mirror of
https://github.com/nix-community/home-manager
synced 2025-02-17 05:35:06 +01:00
services/kanshi: add module example (#2008)
This commit is contained in:
parent
23769994e8
commit
77188bcd6e
1 changed files with 20 additions and 0 deletions
|
@ -146,6 +146,26 @@ in {
|
||||||
description = ''
|
description = ''
|
||||||
List of profiles.
|
List of profiles.
|
||||||
'';
|
'';
|
||||||
|
example = literalExample ''
|
||||||
|
undocked = {
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "eDP-1";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
docked = {
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "eDP-1";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
criteria = "Some Company ASDF 4242";
|
||||||
|
transform = "90";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
|
|
Loading…
Add table
Reference in a new issue