ooknet/home/modules/desktop/wayland/windowManager/default.nix
ooks-io 82f539c989 refactor(hyprland): move nvidia option > wayland.nvidia/add hyprlands.extras
hyprland extras to serve as place to add hyprecosystem projects
2024-04-01 18:07:43 +13:00

14 lines
209 B
Nix

{ lib, ... }:
{
imports = [
./hyprland
];
options.homeModules.desktop.wayland.windowManager = {
hyprland = {
enable = lib.mkEnableOption "Enable Hyprland window-manager";
};
};
}