1
Fork 0
satellite/modules/applications/rofi.nix

18 lines
337 B
Nix
Raw Normal View History

{ 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";
# padding = 10;
# lines = 7;
# fullscreen = false;
2020-04-20 15:44:24 +02:00
cycle = true;
theme = theme.rofi.theme;
extraConfig = theme.rofi.config;
2020-04-20 15:44:24 +02:00
};
}