mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
36 lines
643 B
Nix
36 lines
643 B
Nix
|
{
|
||
|
services.shikane = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
profile = [
|
||
|
{
|
||
|
name = "external-monitor-default";
|
||
|
output = [
|
||
|
{
|
||
|
match = "eDP-1";
|
||
|
enable = true;
|
||
|
}
|
||
|
{
|
||
|
match = "HDMI-A-1";
|
||
|
enable = true;
|
||
|
position = {
|
||
|
x = 1920;
|
||
|
y = 0;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
{
|
||
|
name = "builtin";
|
||
|
output = [
|
||
|
{
|
||
|
match = "eDP-1";
|
||
|
enable = true;
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|