31 lines
558 B
Nix
31 lines
558 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [ kanshi ];
|
||
|
|
||
|
services.kanshi = {
|
||
|
enable = true;
|
||
|
profiles = {
|
||
|
standalone = {
|
||
|
outputs = [{
|
||
|
criteria = "LVDS-1";
|
||
|
mode = "1366x768@60Hz";
|
||
|
status = "enable";
|
||
|
}];
|
||
|
};
|
||
|
docked = {
|
||
|
outputs = [
|
||
|
{
|
||
|
criteria = "LVDS-1";
|
||
|
status = "disable";
|
||
|
}
|
||
|
{
|
||
|
criteria = "BNQ BenQ GW2780 L9K0033101Q";
|
||
|
mode = "1920x1080@60Hz";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|