options/modules: add options for Hyprland

This commit is contained in:
Anthony Rodriguez 2025-01-14 14:07:41 +01:00
parent 9f3d6ae768
commit 76a2caa9c7
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
3 changed files with 11 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./modules
./profiles ./profiles
./homeVars.nix ./homeVars.nix

View file

@ -0,0 +1,3 @@
{
imports = [./hyprland.nix];
}

View file

@ -0,0 +1,7 @@
{lib, ...}: let
inherit (lib.types) mkEnableOption;
in {
options.local.modules.hyprland = {
enable = mkEnableOption "Hyprland modules";
};
}