From 9a7ddba442ef504daadb742d0648c21819bf0608 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Sat, 19 Oct 2024 00:11:58 -0400 Subject: added hyprland to flakes and added cursor theme --- home-config/nix-home-manager/flake.nix | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'home-config/nix-home-manager/flake.nix') diff --git a/home-config/nix-home-manager/flake.nix b/home-config/nix-home-manager/flake.nix index 0048eb2..6429214 100644 --- a/home-config/nix-home-manager/flake.nix +++ b/home-config/nix-home-manager/flake.nix @@ -12,15 +12,24 @@ url = "github:hyprwm/hyprpicker"; inputs.nixpkgs.follows = "nixpkgs"; }; + hyprland = { + url = "github:hyprwm/hyprland/v0.44.1"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nixgl = { + url = "github:nix-community/nixGL"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { nixpkgs, home-manager, hyprpicker-git, ... }@inputs: + outputs = { nixpkgs, home-manager, hyprpicker-git, hyprland, nixgl, ... }@inputs: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; overlays = [ hyprpicker-git.overlays.default - ]; + nixgl.overlay + ]; in { homeConfigurations."ryan" = home-manager.lib.homeManagerConfiguration { inherit pkgs; @@ -30,6 +39,12 @@ modules = [ ./home.nix {nixpkgs.overlays = overlays;} + { + _module.args = { + inherit hyprland; + inherit nixgl; + }; + } ]; # Optionally use extraSpecialArgs -- cgit v1.2.3