rebuilding minimised nix files

This commit is contained in:
2026-03-02 19:30:54 +01:00
parent 5c89fda8ac
commit 9afb4a25d5
3 changed files with 320 additions and 320 deletions
+7 -7
View File
@@ -1,13 +1,13 @@
{ config, lib, pkgs, flakeRoot, ... }:
{ config, lib, pkgs, flakeRoot, inputs, ... }:
{
home.packages = with pkgs; [ jq ];
wayland.windowManager.hyprland = {
enable = true;
plugins = [ pkgs.hyprlandPlugins.hyprscrolling
pkgs.hyprlandPlugins.hyprspace
# pkgs.hyprlandPlugins.hyprsunset
pkgs.hyprlandPlugins.HyprEasymotion
];
plugins = with inputs.hyprland-plugins.packages.${pkgs.system}; [
hyprscrolling
hyprspace
hyprsunset
HyprEasymotion
];
};
}