Set rofi theme to material

This commit is contained in:
2026-01-21 12:33:19 +01:00
parent a80fff9a6d
commit a03f0d4064
3 changed files with 10 additions and 1 deletions

View File

@@ -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

View File

@@ -2,7 +2,6 @@
{
home.packages = with pkgs; [
rofi
bzmenu
hyprshot
hyprlock

9
wm/rofi.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
programs.rofi = {
enable = true;
theme = "material";
terminal = "${pkgs.kitty}/bin/kitty";
};
}