Evie Litherland-Smith
8f179c9f6b
Add kanshi config to Northstar Standardise monitor config across machines Move waybar alt bar definition to Vanguard config specifically, don't need to use hacky solution
38 lines
744 B
Nix
38 lines
744 B
Nix
{...}: {
|
|
imports = [./work.nix];
|
|
wayland.windowManager.sway.config = let
|
|
defaultOutput = "eDP-1";
|
|
in {
|
|
output.${defaultOutput}.scale = "1.25";
|
|
workspaceOutputAssign = [
|
|
{
|
|
output = defaultOutput;
|
|
workspace = "1";
|
|
}
|
|
];
|
|
};
|
|
services.kanshi = {
|
|
enable = true;
|
|
settings = let
|
|
laptopScreen = {
|
|
criteria = "eDP-1";
|
|
scale = 1.25;
|
|
position = "2560,576";
|
|
};
|
|
monitor = {
|
|
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
|
scale = 1.5;
|
|
position = "0,0";
|
|
};
|
|
in [
|
|
{output = laptopScreen;}
|
|
{
|
|
profile = {
|
|
name = "docked";
|
|
outputs = [laptopScreen monitor];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|