15 lines
362 B
Nix
Raw Normal View History

2020-08-10 01:17:22 +04:00
{ pkgs, config, lib, ... }:
let
thm = config.lib.base16.theme;
themeFile = config.lib.base16.templateFile { name = "rofi"; };
in
{
home-manager.users.alukard = {
programs.rofi = {
enable = true;
2020-08-15 19:36:16 +04:00
font = "${thm.fontMono} ${thm.headerFontSize}";
2020-08-10 01:17:22 +04:00
terminal = config.defaultApplications.term.cmd;
theme = "${themeFile}";
};
};
}