9 lines
203 B
Nix
9 lines
203 B
Nix
{ config, lib, pkgs, flakeRoot, inputs, ... }:
|
|
{
|
|
home.packages = with pkgs; [ jq ];
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
plugins = [ pkgs.hyprlandPlugins.hyprscrolling ];
|
|
};
|
|
}
|