diff --git a/parts/templates/quickshell/flake.nix b/parts/templates/quickshell/flake.nix index bc74286..1f586c0 100644 --- a/parts/templates/quickshell/flake.nix +++ b/parts/templates/quickshell/flake.nix @@ -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; + }) ]; }; });