NixOS-Config/modules/home/wms/hyprland/default.nix

19 lines
268 B
Nix
Raw Normal View History

2024-12-08 06:41:06 -05:00
{ config, pkgs, ... }:
{
imports = [
./autostart
./hotkeys
./inputs
./outputs
./plugins
./programs
./rules
./theme
];
wayland.windowManager.hyprland = {
enable = true;
plugins = with pkgs.hyprlandPlugins; [ hy3 ];
};
}