Revert pinning change

This commit is contained in:
2024-08-23 17:13:44 -07:00
parent 34f27abebf
commit c3a5b92e50
2 changed files with 14 additions and 88 deletions

View File

@@ -10,13 +10,19 @@
inputs.nixpkgs.follows = "nixpkgs";
};
system-flake = {
hyprland = {
type = "git";
url = "file:///etc/nixos";
url = "https://github.com/hyprwm/Hyprland";
submodules = true;
rev = "9a09eac79b85c846e3a865a9078a3f8ff65a9259";
};
hy3 = {
url = "github:outfoxxed/hy3?ref=hl0.42.0";
inputs.hyprland.follows = "hyprland";
};
};
outputs = { nixpkgs, home-manager, ... } @inputs :
outputs = { nixpkgs, home-manager, hyprland, hy3, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
@@ -27,17 +33,14 @@
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
inputs.system-flake.inputs.hyprland.homeManagerModules.default
hyprland.homeManagerModules.default
./home.nix
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
extraSpecialArgs = {
hy3 = inputs.system-flake.inputs.hy3;
hyprland = inputs.system-flake.inputs.hyprland;
};
extraSpecialArgs = { inherit hy3; inherit hyprland; };
};
};
}