nixos-config/modules/home/wms/hyprland/default.nix
2024-12-08 06:41:06 -05:00

18 lines
268 B
Nix

{ config, pkgs, ... }:
{
imports = [
./autostart
./hotkeys
./inputs
./outputs
./plugins
./programs
./rules
./theme
];
wayland.windowManager.hyprland = {
enable = true;
plugins = with pkgs.hyprlandPlugins; [ hy3 ];
};
}