templates/quickshell: fix template (maybe?)

This commit is contained in:
Charlie Root 2024-08-30 22:32:25 +02:00
commit f4672e5699

View file

@ -21,16 +21,16 @@
devShells = forEachSystem (system: {
default = pkgsForEach.${system}.mkShellNoCC {
packages = [
quickshell.packages.${system}.default.override
{
withJemalloc = true;
withQtSvg = true;
withWayland = true;
withX11 = false;
withPipewire = true;
withPam = true;
withHyprland = true;
}
(quickshell.packages.${system}.default.override
{
withJemalloc = true;
withQtSvg = true;
withWayland = true;
withX11 = false;
withPipewire = true;
withPam = true;
withHyprland = true;
})
];
};
});