refactor(home:hyprland): move volume, brightness, powermenu --> tools

This commit is contained in:
ooks-io 2024-06-09 17:13:07 +12:00
parent a6d5e892a1
commit 09504dbc89
9 changed files with 124 additions and 57 deletions

View file

@ -0,0 +1,14 @@
{ lib, config, inputs, pkgs, ... }:
let
inherit (lib) mkIf;
multiplexer = config.ooknet.console.multiplexer;
launcher = config.ooknet.wayland.launcher;
in
{
config = mkIf (multiplexer == "zellij" && launcher == "rofi") {
home.packages = [ inputs.ooks-scripts.packages.${pkgs.system}.zellijmenu ];
ooknet.binds.zellijMenu = "zellijMenu -n";
};
}