mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +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 = ''
|
||||
List of profiles.
|
||||
'';
|
||||
example = literalExample ''
|
||||
undocked = {
|
||||
outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
}
|
||||
];
|
||||
};
|
||||
docked = {
|
||||
outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
}
|
||||
{
|
||||
criteria = "Some Company ASDF 4242";
|
||||
transform = "90";
|
||||
}
|
||||
];
|
||||
};
|
||||
'';
|
||||
};
|
||||
|
||||
extraConfig = mkOption {
|
||||
|
|
Loading…
Reference in a new issue