From 638751eb20e3a0932984f4f04b01e6dd5212ff62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 23 Jan 2022 16:40:54 +0100 Subject: [PATCH] feat(rofi): theme --- configs/rofi.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/rofi.nix b/configs/rofi.nix index 40bc179..e1b46b7 100644 --- a/configs/rofi.nix +++ b/configs/rofi.nix @@ -1,9 +1,10 @@ -{ config, ... }: +{ config, pkgs, ... }: let inherit (import ) colours; in{ home-manager.users.me.programs.rofi = { enable = true; font = "Monospace 10"; + theme = "${pkgs.rofi}/share/rofi/themes/Arc-Dark.rasi"; }; }