diff --git a/modules/home/de/qtile.nix b/modules/home/de/qtile.nix index 3b677c7..9c866c5 100644 --- a/modules/home/de/qtile.nix +++ b/modules/home/de/qtile.nix @@ -23,9 +23,10 @@ in { xsession.enable = true; - myConfig.rofi = { + myConfig.rofi.enable = true; + services.clipmenu = { enable = true; - clipboard.enable = true; + launcher = "rofi"; }; services.picom = { diff --git a/modules/home/rofi/default.nix b/modules/home/rofi/default.nix index 5971aba..5af5bfd 100644 --- a/modules/home/rofi/default.nix +++ b/modules/home/rofi/default.nix @@ -17,10 +17,5 @@ in { package = pkgs.rofi-wayland; theme = ./theme.rasi; }; - - services.clipmenu = lib.mkIf cfg.clipboard.enable { - enable = true; - launcher = "rofi"; - }; }; }