29 lines
600 B
Nix
29 lines
600 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hypr/binds.nix
|
|
./hypr/general.nix
|
|
./hypr/exec.nix
|
|
./hypr/rules.nix
|
|
./hypr/animation.nix
|
|
./hypr/misc.nix
|
|
./hypr/input.nix
|
|
./hypr/layers.nix
|
|
|
|
./scripts/movement.nix
|
|
|
|
# volume stuff
|
|
];
|
|
wayland.windowManager.hyprland.enable = true;
|
|
wayland.windowManager.hyprland.systemd.enable = false; # for UWSM support...
|
|
wayland.windowManager.hyprland.plugins = [
|
|
pkgs.hyprlandPlugins.hyprsplit
|
|
pkgs.hyprlandPlugins.hypr-dynamic-cursors
|
|
pkgs.hyprlandPlugins.hyprspace
|
|
pkgs.hyprlandPlugins.hyprbars
|
|
];
|
|
}
|