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