Recreated nix files

This commit is contained in:
2026-03-03 11:52:27 +01:00
parent 22c8bb97a0
commit b0d93b8968
3 changed files with 305 additions and 308 deletions
+301 -302
View File
File diff suppressed because it is too large Load Diff
+2 -3
View File
@@ -1797,11 +1797,10 @@ This Nix module integrates the hyprscrolling plugin into a Home-Manager managed
#+begin_src nix :tangle home/desktop/hyprscrolling.nix :noweb tangle :mkdirp yes
{ config, lib, pkgs, flakeRoot, inputs, ... }:
{
home.packages = with pkgs; [ jq ];
wayland.windowManager.hyprland = {
enable = true;
plugins = with inputs.hyprland-nix.packages.${pkgs.stdenv.hostPlatform.system}; [
hyprscrolling
];
plugins = [ pkgs.hyprlandPlugins.hyprscrolling ];
};
}
#+end_src
+2 -3
View File
@@ -1,9 +1,8 @@
{ config, lib, pkgs, flakeRoot, inputs, ... }:
{
home.packages = with pkgs; [ jq ];
wayland.windowManager.hyprland = {
enable = true;
plugins = with inputs.hyprland-nix.packages.${pkgs.stdenv.hostPlatform.system}; [
hyprscrolling
];
plugins = [ pkgs.hyprlandPlugins.hyprscrolling ];
};
}