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