Disable hyprland

This commit is contained in:
muon 2024-06-11 11:38:56 +00:00
parent 02b0f4bc18
commit 5a376db0da
2 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,8 @@
{ pkgs, lib, config, ... }: {
options.mods.hyprland.enable = lib.mkEnableOption "enables hyprland";
options.mods.hyprland.enable = lib.mkEnableOption {
description = "enables hyprland";
default = false;
};
config = lib.mkIf config.mods.hyprland.enable {
programs.waybar.enable = true;