Skip to content

Commit

Permalink
nix: fix duplicate inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
matt1432 authored and fufexan committed Jan 27, 2025
1 parent 9c0831f commit 5d979b5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 31 deletions.
37 changes: 8 additions & 29 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";

hyprutils = {
url = "github:hyprwm/hyprutils";
hyprlang = {
url = "github:hyprwm/hyprlang";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};

hyprutils.follows = "hyprlang/hyprutils";

hyprland-qt-support = {
url = "github:hyprwm/hyprland-qt-support";
inputs.hyprlang.follows = "hyprlang";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
Expand Down

0 comments on commit 5d979b5

Please sign in to comment.