1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

Use hyprcursors

This commit is contained in:
RGBCube 2024-07-02 12:50:48 +03:00
parent b7562dbd3f
commit 4a3ac9999d
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
3 changed files with 44 additions and 2 deletions

View file

@ -56,6 +56,13 @@
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
hyprpicker.url = "github:hyprwm/hyprpicker";
hyprcursors = {
url = "github:VirtCode/hypr-dynamic-cursors";
inputs.hyprland.follows = "hyprland";
inputs.nixpkgs.follows = "hyprland/nixpkgs";
};
ghostty.url = "git+ssh://git@github.com/RGBCube/ghostty";
ghosttyModule.url = "github:clo4/ghostty-hm-module";
@ -93,8 +100,9 @@
nixpkgsOverlayModule = with lib1; {
nixpkgs.overlays = [(final: prev: {
ghostty = inputs.ghostty.packages.${prev.system}.default;
zls = inputs.zls.packages.${prev.system}.default;
ghostty = inputs.ghostty.packages.${prev.system}.default;
hyprcursors = inputs.hyprcursors.packages.${prev.system}.default;
zls = inputs.zls.packages.${prev.system}.default;
})] ++ pipe inputs [
attrValues
(filter (value: value ? overlays.default))