Files
nixos/modules/home-manager/bundles/myhypr.nix
2025-08-05 18:33:54 +02:00

14 lines
269 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options.myHome.bundle.myhypr.enable = lib.mkEnableOption "enable hypr bundle";
config = lib.mkIf config.myHome.bundle.myhypr.enable {
myHome.services.hyprland.enable = true;
myHome.services.waybar.enable = true;
};
}