Recreated nix files

This commit is contained in:
2026-03-03 11:37:26 +01:00
parent 5fe8307846
commit be1ab9ee72
5 changed files with 317 additions and 849 deletions
+4 -9
View File
@@ -664,6 +664,9 @@ The inputs for my system's configuration are very simple
url = "github:youwen5/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.overlays = [
hyprland-nix.overlays.default
];
};
<<flake-outputs>>
}
@@ -1794,15 +1797,7 @@ This Nix module integrates the hyprscrolling plugin into a Home-Manager managed
{ config, lib, pkgs, flakeRoot, inputs, ... }:
{
home.packages = with pkgs; [ jq ];
wayland.windowManager.hyprland = {
enable = true;
plugins = [
inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprscrolling
#inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprspace
#inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprsunset
#inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hypr-easymotion
];
};
hyprland-nix.packages.${config.nixpkgs.system}.hyprscrolling
}
#+end_src