diff --git a/home.nix b/home.nix index 7ee4a16..725864e 100644 --- a/home.nix +++ b/home.nix @@ -13,6 +13,7 @@ ./programs/zsh.nix ./programs/direnv.nix ./programs/firefox.nix + ./wm/rofi.nix ./wm/cursor.nix ./wm/dconf.nix ./wm/gtk.nix diff --git a/wm/hyprland.nix b/wm/hyprland.nix index ef2058a..a15ce8a 100644 --- a/wm/hyprland.nix +++ b/wm/hyprland.nix @@ -2,7 +2,6 @@ { home.packages = with pkgs; [ - rofi bzmenu hyprshot hyprlock diff --git a/wm/rofi.nix b/wm/rofi.nix new file mode 100644 index 0000000..95c145f --- /dev/null +++ b/wm/rofi.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + programs.rofi = { + enable = true; + theme = "material"; + terminal = "${pkgs.kitty}/bin/kitty"; + }; +}