Nix: use gcc13Stdenv

This commit is contained in:
Mihai Fufezan
2023-09-07 11:20:08 +03:00
parent cc5852faa2
commit 0be6b03ee9
3 changed files with 5 additions and 3 deletions

View File

@@ -77,7 +77,9 @@
});
devShells = eachSystem (system: {
default = pkgsFor.${system}.mkShell {
default = pkgsFor.${system}.mkShell.override {
stdenv = pkgsFor.${system}.gcc13Stdenv;
} {
name = "hyprland-shell";
nativeBuildInputs = with pkgsFor.${system}; [cmake python3];
buildInputs = [self.packages.${system}.wlroots-hyprland];