diff options
author | Ryan Schanzenbacher <ryan@rschanz.org> | 2025-01-20 21:29:11 -0500 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2025-01-20 21:29:11 -0500 |
commit | de3f5434bd7a1a323663d88d3b0eca15aa8f46bf (patch) | |
tree | 3077396e38340d561ff0eb314a69be5d24dfe6f1 /home-config/nix-home-manager/flake.nix | |
parent | ddd6e973d651b9d9c4d160c8ebb288daa071e259 (diff) |
fixed hyprlock and updated hyprpicker
Diffstat (limited to 'home-config/nix-home-manager/flake.nix')
-rw-r--r-- | home-config/nix-home-manager/flake.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home-config/nix-home-manager/flake.nix b/home-config/nix-home-manager/flake.nix index af0af94..9dd2bec 100644 --- a/home-config/nix-home-manager/flake.nix +++ b/home-config/nix-home-manager/flake.nix | |||
@@ -8,8 +8,12 @@ | |||
8 | url = "github:nix-community/home-manager/fc52a210b60f2f52c74eac41a8647c1573d2071d"; | 8 | url = "github:nix-community/home-manager/fc52a210b60f2f52c74eac41a8647c1573d2071d"; |
9 | inputs.nixpkgs.follows = "nixpkgs"; | 9 | inputs.nixpkgs.follows = "nixpkgs"; |
10 | }; | 10 | }; |
11 | hyprlock = { | ||
12 | url = "github:hyprwm/hyprlock/v0.6.1"; | ||
13 | inputs.nixpkgs.follows = "nixpkgs"; | ||
14 | }; | ||
11 | hyprpicker-git = { | 15 | hyprpicker-git = { |
12 | url = "github:hyprwm/hyprpicker/v0.4.1"; | 16 | url = "github:hyprwm/hyprpicker/v0.4.2"; |
13 | inputs.nixpkgs.follows = "nixpkgs"; | 17 | inputs.nixpkgs.follows = "nixpkgs"; |
14 | }; | 18 | }; |
15 | hyprland = { | 19 | hyprland = { |
@@ -28,12 +32,11 @@ | |||
28 | #mozff.url = "github:mozilla/nixpkgs-mozilla"; | 32 | #mozff.url = "github:mozilla/nixpkgs-mozilla"; |
29 | }; | 33 | }; |
30 | 34 | ||
31 | outputs = { nixpkgs, home-manager, hyprpicker-git, hyprland, nixgl, wpaperd, ... }@inputs: | 35 | outputs = { nixpkgs, home-manager, hyprpicker-git, hyprland, nixgl, wpaperd, hyprlock, ... }@inputs: |
32 | let | 36 | let |
33 | system = "x86_64-linux"; | 37 | system = "x86_64-linux"; |
34 | pkgs = nixpkgs.legacyPackages.${system}; | 38 | pkgs = nixpkgs.legacyPackages.${system}; |
35 | overlays = [ | 39 | overlays = [ |
36 | hyprpicker-git.overlays.default | ||
37 | nixgl.overlay | 40 | nixgl.overlay |
38 | #mozff.overlays.firefox | 41 | #mozff.overlays.firefox |
39 | ]; | 42 | ]; |
@@ -51,6 +54,8 @@ | |||
51 | inherit hyprland; | 54 | inherit hyprland; |
52 | inherit nixgl; | 55 | inherit nixgl; |
53 | inherit wpaperd; | 56 | inherit wpaperd; |
57 | inherit hyprlock; | ||
58 | inherit hyprpicker-git; | ||
54 | }; | 59 | }; |
55 | } | 60 | } |
56 | ]; | 61 | ]; |