meta: Begin making hyprland module customizable

This is a part of simplifying the hyprland module to simply "desktop".
This commit is contained in:
Donovan Glover 2024-04-04 05:34:30 -04:00
parent 3da9c62869
commit 9ee08ca7eb
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,6 +1,15 @@
{ pkgs, ... }:
{ pkgs, config, lib, ... }:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.modules.desktop;
in
{
options.modules.desktop = {
};
config = {
programs.hyprland.enable = true;
i18n.inputMethod = {
@ -79,4 +88,5 @@
allowBitmaps = false;
};
};
};
}