diff --git a/modules/window_manager/launcher.nix b/modules/window_manager/launcher.nix index c28616e..9f8bc3c 100644 --- a/modules/window_manager/launcher.nix +++ b/modules/window_manager/launcher.nix @@ -1,9 +1,19 @@ { config, pkgs, ... }: { - environment = { - systemPackages = with pkgs; [ - rofi + programs.rofi = { + enable = true; + theme = "sidebar"; + font = "sans-serif"; + package = pkgs.rofi; + modes = [ + "drun" + "run" + "window" + "ssh" ]; + extraConfig = { + show-icons = true; + }; }; }