2022-05-10 18:00:16 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
let
|
|
|
|
theme = pkgs.myThemes.current;
|
|
|
|
in
|
|
|
|
{
|
2020-04-20 15:44:24 +02:00
|
|
|
home-manager.users.adrielus.programs.rofi = {
|
|
|
|
enable = true;
|
|
|
|
font = "Source Code Pro 16";
|
|
|
|
location = "center";
|
2021-11-27 19:07:26 +01:00
|
|
|
# padding = 10;
|
|
|
|
# lines = 7;
|
|
|
|
# fullscreen = false;
|
2020-04-20 15:44:24 +02:00
|
|
|
cycle = true;
|
2022-05-10 18:00:16 +02:00
|
|
|
theme = theme.rofi.theme;
|
|
|
|
extraConfig = theme.rofi.config;
|
2020-04-20 15:44:24 +02:00
|
|
|
};
|
|
|
|
}
|