diff options
author | Mihai Fufezan <[email protected]> | 2023-09-07 11:20:08 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-09-07 11:20:08 +0300 |
commit | 0be6b03ee972fcc4921984f3b68469a2ee121511 (patch) | |
tree | 598aac1ed2ecfca732ca3f7b7032fdddf778f777 /flake.nix | |
parent | cc5852faa227f7c618cf7b045793ce1236fd142f (diff) | |
download | Hyprland-0be6b03ee972fcc4921984f3b68469a2ee121511.tar.gz Hyprland-0be6b03ee972fcc4921984f3b68469a2ee121511.zip |
Nix: use gcc13Stdenv
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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]; |