display waybar on all monitors

removed the output = [] array from home-manager/waybar.nix as it was
preventing replugged monitors from displaying waybar, since their id
(DP-XX) changes when being replugged
This commit is contained in:
Gabriella Bere 2025-01-06 22:38:15 +00:00
parent 38ff4ee9a8
commit e20ad6341f
2 changed files with 10 additions and 5 deletions

View file

@ -13,11 +13,21 @@
enable = true; enable = true;
}; };
languages = { languages = {
enableLSP = true;
enableDAP = true;
enableExtraDiagnostics = true;
enableFormat = true;
enableTreesitter = true;
rust.enable = true; rust.enable = true;
nix.enable = true; nix.enable = true;
markdown.enable = true; markdown.enable = true;
java.enable = true; java.enable = true;
}; };
autocomplete.nvim-cmp = {
enable = true;
};
}; };
}; };
}; };

View file

@ -14,11 +14,6 @@
layer = "top"; layer = "top";
position = "top"; position = "top";
height = 30; height = 30;
output = [
"eDP-2"
"DP-2"
"DP-3"
];
modules-left = [ "wlr/taskbar" ]; modules-left = [ "wlr/taskbar" ];
modules-center = [ modules-center = [
"clock" "clock"