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;
launcher = config.ooknet.wayland.launcher;
in
{
config = mkIf (launcher == "rofi") {
home.packages = [ inputs.ooks-scripts.packages.${pkgs.system}.powermenu ];
ooknet.binds.powermenu = "powermenu -c dmenu";
};
}