From 00f55261c2f076f0db06cae2d4eda9c954dff680 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Sun, 7 Dec 2025 19:48:23 +0200 Subject: [PATCH] feat: rofi --- modules/home/rofi.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 modules/home/rofi.nix diff --git a/modules/home/rofi.nix b/modules/home/rofi.nix new file mode 100644 index 0000000..c84d930 --- /dev/null +++ b/modules/home/rofi.nix @@ -0,0 +1,25 @@ +{ + flake.modules.homeManager.rofi = { + config, + lib, + ... + }: let + col = lib.arta.colours.everforest; + in { + programs.rofi = { + enable = true; + modes = ["run"]; + theme = let + inherit (config.lib.formats.rasi) mkLiteral; + in { + "*" = { + bg0 = mkLiteral "#${col.bg0}"; + fg = mkLiteral "#${col.fg}"; + + background-color = mkLiteral "@bg0"; + text-color = mkLiteral "@fg"; + }; + }; + }; + }; +} -- 2.44.1