11 lines
170 B
Nix
11 lines
170 B
Nix
{lib, ...}: {
|
|
options.hive.hyprland = {
|
|
enable = lib.mkEnableOption "Enable Hyprland configuration";
|
|
};
|
|
|
|
imports = [
|
|
./config.nix
|
|
./hyprland.nix
|
|
];
|
|
}
|