Remove Sway config from work machine configurations

This commit is contained in:
Evie Litherland-Smith 2024-06-17 08:48:58 +01:00
parent 6ed405d7e2
commit d1e71284d5
3 changed files with 3 additions and 47 deletions

View file

@ -1,6 +1 @@
{...}: {
imports = [./work.nix];
wayland.windowManager.sway.config = {
output."Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
};
}
{...}: {imports = [./work.nix];}

View file

@ -1,40 +1 @@
{...}: {
imports = [./work.nix];
wayland.windowManager.sway.config = {
output."eDP-1".scale = "1.25";
workspaceOutputAssign = [
{
output = "eDP-1";
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 [
{
profile = {
name = "undocked";
outputs = [laptopScreen];
};
}
{
profile = {
name = "docked";
outputs = [laptopScreen monitor];
};
}
];
};
}
{...}: {imports = [./work.nix];}

View file

@ -21,7 +21,7 @@
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
electronCLIFlags = lib.mkIf config.wayland.windowManager.sway.enable [["ozone-platform" "wayland"]];
electronCLIFlags = [["ozone-platform" "wayland"]];
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;