2020-08-10 01:17:22 +04:00

15 lines
358 B
Nix

{ 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;
font = "${thm.fontMono} ${thm.headerSize}";
terminal = config.defaultApplications.term.cmd;
theme = "${themeFile}";
};
};
}