summaryrefslogtreecommitdiff
path: root/home-config/nix-home-manager/flake.nix
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2025-03-09 23:44:45 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2025-03-09 23:44:45 -0400
commit365a13de3e19c66f6bb2ffb806e8086a068ffc25 (patch)
tree5a42e6a12b06124bc9b34c77f5b85ea988759f38 /home-config/nix-home-manager/flake.nix
parentb64aeaac7a6316181e8cec7eb7530c08fb9eca41 (diff)
changed hyprland build, added mouse fx, firefox changes
Diffstat (limited to 'home-config/nix-home-manager/flake.nix')
-rw-r--r--home-config/nix-home-manager/flake.nix13
1 files changed, 12 insertions, 1 deletions
diff --git a/home-config/nix-home-manager/flake.nix b/home-config/nix-home-manager/flake.nix
index b680ab9..ba3d01a 100644
--- a/home-config/nix-home-manager/flake.nix
+++ b/home-config/nix-home-manager/flake.nix
@@ -33,9 +33,18 @@
33 url = "github:nix-community/flake-firefox-nightly/3391372604cd3def19e6df88a51f1882aabcd59f"; 33 url = "github:nix-community/flake-firefox-nightly/3391372604cd3def19e6df88a51f1882aabcd59f";
34 inputs.nixpkgs.follows = "nixpkgs"; 34 inputs.nixpkgs.follows = "nixpkgs";
35 }; 35 };
36 clipboard-sync = {
37 url = "github:dnut/clipboard-sync/943e49e0a9a16b54bbab3704e99b6cf6ad4ea19f";
38 inputs.nixpkgs.follows = "nixpkgs";
39 };
40 hypr-dynamic-cursors = {
41 url = "github:VirtCode/hypr-dynamic-cursors/fd6214629937949ecd8a39f4b5ebbce2afac0dd5";
42 inputs.hyprland.follows = "hyprland";
43 inputs.nixpkgs.follows = "hyprland/nixpkgs";
44 };
36 }; 45 };
37 46
38 outputs = { nixpkgs, home-manager, hyprland, nixgl, wpaperd, hyprpicker-git, hyprlock, mozff, ... }@inputs: 47 outputs = { nixpkgs, home-manager, hyprland, nixgl, wpaperd, hyprpicker-git, hyprlock, mozff, clipboard-sync, hypr-dynamic-cursors, ... }@inputs:
39 let 48 let
40 system = "x86_64-linux"; 49 system = "x86_64-linux";
41 pkgs = nixpkgs.legacyPackages.${system}; 50 pkgs = nixpkgs.legacyPackages.${system};
@@ -59,6 +68,8 @@
59 inherit hyprlock; 68 inherit hyprlock;
60 inherit hyprpicker-git; 69 inherit hyprpicker-git;
61 inherit mozff; 70 inherit mozff;
71 inherit clipboard-sync;
72 inherit hypr-dynamic-cursors;
62 }; 73 };
63 } 74 }
64 ]; 75 ];