1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

services/kanshi: add module example (#2008)

This commit is contained in:
asymmetric 2021-05-16 05:17:48 +02:00 committed by GitHub
parent 23769994e8
commit 77188bcd6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {