14 lines
392 B
Nix
14 lines
392 B
Nix
{ config, lib, pkgs, flakeRoot, inputs, ... }:
|
|
{
|
|
home.packages = with pkgs; [ jq ];
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
plugins = with inputs.hyprland-plugins.packages.${pkgs.system}; [
|
|
hyprland-plugins-hyprscrolling
|
|
hyprland-plugins-hyprspace
|
|
hyprland-plugins-hyprsunset
|
|
hyprland-plugins-HyprEasymotion
|
|
];
|
|
};
|
|
}
|