fix: temporarily pin hyprland to stable to avoid mesa bugs

This commit is contained in:
Youwen Wu 2024-08-21 00:24:47 -07:00
parent f81c7f795c
commit 569a389fa9
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
4 changed files with 41 additions and 5 deletions

View file

@ -53,6 +53,8 @@
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland-stable.url = "github:nixos/nixpkgs/6404fe89d602c9511c08f4978bcb214032cd3cfc";
};
outputs = {
@ -77,8 +79,11 @@
nixosConfigurations = {
demeter = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
system = "x86_64-linux";
specialArgs = {
inherit inputs;
system = "x86_64-linux";
};
modules = [
./hosts/demeter
];