options/modules: add options for Hyprland
This commit is contained in:
parent
9f3d6ae768
commit
76a2caa9c7
3 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./modules
|
||||||
./profiles
|
./profiles
|
||||||
|
|
||||||
./homeVars.nix
|
./homeVars.nix
|
||||||
|
|
3
modules/options/modules/default.nix
Normal file
3
modules/options/modules/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
imports = [./hyprland.nix];
|
||||||
|
}
|
7
modules/options/modules/hyprland.nix
Normal file
7
modules/options/modules/hyprland.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{lib, ...}: let
|
||||||
|
inherit (lib.types) mkEnableOption;
|
||||||
|
in {
|
||||||
|
options.local.modules.hyprland = {
|
||||||
|
enable = mkEnableOption "Hyprland modules";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue