refactor(hyprland): move from wofi to fuzzel

This commit is contained in:
Michael Thomas 2024-08-05 16:40:37 -04:00
parent 722f98834a
commit 739b1ae6c5
2 changed files with 3 additions and 20 deletions

View File

@ -18,7 +18,8 @@ in {
config = mkIf cfg.enable {
my.ags.enable = true;
my.wofi.enable = true;
programs.fuzzel.enable = true;
home.packages = with pkgs; [
pavucontrol
@ -55,7 +56,7 @@ in {
bind =
[
# Program launcher
"$mod, SPACE, exec, wofi --show drun"
"$mod, SPACE, exec, fuzzel"
# Program shortcuts
"$mod, F, exec, firefox"
"$mod, Q, killactive"

View File

@ -1,18 +0,0 @@
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.my.wofi;
in {
options.my.wofi = {
enable = mkEnableOption "wofi";
};
config = mkIf cfg.enable {
programs.wofi = {
enable = true;
};
};
}