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