From a03f0d4064c0967fef15de5016ae72650339198d Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Wed, 21 Jan 2026 12:33:19 +0100 Subject: [PATCH] Set rofi theme to material --- home.nix | 1 + wm/hyprland.nix | 1 - wm/rofi.nix | 9 +++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 wm/rofi.nix 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"; + }; +}