refactor(home:hyprland): move volume, brightness, powermenu --> tools
This commit is contained in:
parent
a6d5e892a1
commit
09504dbc89
9 changed files with 124 additions and 57 deletions
14
home/modules/desktop/tools/zellijMenu.nix
Normal file
14
home/modules/desktop/tools/zellijMenu.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue