Open
Description
Whenever I attempt to update my flakes I keep getting the error: error: input 'hyprland/hyprland-qtutils/hyprutils' follows a non-existent input 'hyprland/hyprland-qtutils/hyprlang/hyprutils'
If I had to guess it might have something to do with #10 ? But I don't actually know. Never had any issues with installing or updating hyprland before this point
Heres my flake.nix in case it helps:
{
description = "nixos configuration";
nixConfig = {
extra-trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
extra-substituters = [
"https://hyprland.cachix.org"
"https//nix-community.cachix.org"
];
};
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-24.11";
};
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
pkgs-nixos-unstable = {
url = "github:NixOS/nixpkgs/nixos-unstable";
};
hyprland = {
url = "github:hyprwm/Hyprland";
};
};
outputs = { self, nixpkgs, pkgs-nixos-unstable, home-manager, ... } @ inputs: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
nixos = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
nixos-unstable = import pkgs-nixos-unstable {
inherit system;
config.allowUnfree = true;
};
};
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.randomuser.imports = [./home.nix];
}
];
};
};
}
Metadata
Assignees
Labels
No labels
Activity