Compare commits
2 commits
e0ce6a7803
...
04da6e0f5c
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | 04da6e0f5c | ||
Antoine Martin | 634b8222a2 |
|
@ -143,6 +143,22 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# TODO: make it configurable per machine
|
||||||
|
workspaceOutputAssign = [
|
||||||
|
{ workspace = "1"; output = ["DP-3" "eDP-1"]; }
|
||||||
|
{ workspace = "2"; output = ["DP-3" "eDP-1"]; }
|
||||||
|
{ workspace = "3"; output = ["DP-3" "eDP-1"]; }
|
||||||
|
{ workspace = "4"; output = ["DP-3" "eDP-1"]; }
|
||||||
|
{ workspace = "5"; output = ["DP-3" "eDP-1"]; }
|
||||||
|
|
||||||
|
{ workspace = "6"; output = ["eDP-1"]; }
|
||||||
|
{ workspace = "7"; output = ["eDP-1"]; }
|
||||||
|
|
||||||
|
{ workspace = "8"; output = ["DP-4" "eDP-1"]; }
|
||||||
|
{ workspace = "9"; output = ["DP-4" "eDP-1"]; }
|
||||||
|
{ workspace = "10"; output = ["DP-4" "eDP-1"]; }
|
||||||
|
];
|
||||||
|
|
||||||
window.commands = [
|
window.commands = [
|
||||||
{
|
{
|
||||||
command = "border pixel 2";
|
command = "border pixel 2";
|
||||||
|
|
|
@ -146,6 +146,56 @@
|
||||||
services.xserver.desktopManager.plasma5.enable = true;
|
services.xserver.desktopManager.plasma5.enable = true;
|
||||||
services.power-profiles-daemon.enable = false;
|
services.power-profiles-daemon.enable = false;
|
||||||
|
|
||||||
|
services.autorandr = {
|
||||||
|
enable = true;
|
||||||
|
profiles = {
|
||||||
|
default = {
|
||||||
|
fingerprint = {
|
||||||
|
"eDP-1" = "00ffffffffffff0030e42c0600000000001c0104a51f117802aa95955e598e271b5054000000010101010101010101010101010101012e3680a070381f403020350035ae1000001ab62c80f4703816403020350035ae1000001a000000fe004c4720446973706c61790a2020000000fe004c503134305746412d535044340018";
|
||||||
|
};
|
||||||
|
config = {
|
||||||
|
"eDP-1" = {
|
||||||
|
enable = true;
|
||||||
|
crtc = 0;
|
||||||
|
primary = true;
|
||||||
|
position = "0x0";
|
||||||
|
mode = "1920x1080";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
dock = {
|
||||||
|
fingerprint = {
|
||||||
|
"eDP-1" = "00ffffffffffff0030e42c0600000000001c0104a51f117802aa95955e598e271b5054000000010101010101010101010101010101012e3680a070381f403020350035ae1000001ab62c80f4703816403020350035ae1000001a000000fe004c4720446973706c61790a2020000000fe004c503134305746412d535044340018";
|
||||||
|
"DP-3" = "00ffffffffffff0026cd0f610101010101190103813420782a4ca5a7554da226105054adcf0031468180818c9500950fb300a940d1c0283c80a070b023403020360006442100001a000000ff0031313230303530313030333630000000fd00324b1e4b11000a202020202020000000fc0058323438350a20202020202020008a";
|
||||||
|
"DP-4" = "00ffffffffffff0026cd0f610101010108180103813420782a4ca5a7554da226105054adcf0031468180818c9500950fb300a940d1c0283c80a070b023403020360006442100001a000000ff0031313230303430383030333330000000fd00324b1e4b11000a202020202020000000fc0058323438350a202020202020200081";
|
||||||
|
};
|
||||||
|
config = {
|
||||||
|
"eDP-1" = {
|
||||||
|
enable = true;
|
||||||
|
crtc = 1;
|
||||||
|
primary = false;
|
||||||
|
position = "0x120";
|
||||||
|
mode = "1920x1080";
|
||||||
|
};
|
||||||
|
"DP-3" = {
|
||||||
|
enable = true;
|
||||||
|
crtc = 0;
|
||||||
|
primary = true;
|
||||||
|
position = "1920x0";
|
||||||
|
mode = "1920x1200";
|
||||||
|
};
|
||||||
|
"DP-4" = {
|
||||||
|
enable = true;
|
||||||
|
crtc = 2;
|
||||||
|
primary = false;
|
||||||
|
position = "3840x0";
|
||||||
|
mode = "1920x1200";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Configure console keymap
|
# Configure console keymap
|
||||||
console.keyMap = "us";
|
console.keyMap = "us";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue