Jordan Holt 050a93bc01
All checks were successful
Check flake / build-amd64-linux (push) Successful in 4m52s
hyprland: enable NetworkManager
2025-03-16 17:24:07 +00:00

28 lines
423 B
Nix

{
config,
lib,
...
}:
let
inherit (lib)
mkEnableOption
mkIf
;
cfg = config.modules.system.desktop.hyprland;
in
{
options.modules.system.desktop.hyprland.enable = mkEnableOption "hyprland";
config = mkIf cfg.enable {
services.displayManager.ly.enable = true;
networking.networkmanager.enable = true;
programs.hyprland = {
enable = true;
# withUWSM = true;
};
};
}