1
Fork 0
satellite/modules/applications/rofi.nix
2022-05-10 19:00:16 +03:00

18 lines
337 B
Nix

{ pkgs, ... }:
let
theme = pkgs.myThemes.current;
in
{
home-manager.users.adrielus.programs.rofi = {
enable = true;
font = "Source Code Pro 16";
location = "center";
# padding = 10;
# lines = 7;
# fullscreen = false;
cycle = true;
theme = theme.rofi.theme;
extraConfig = theme.rofi.config;
};
}