nix-dotfiles/modules/rofi.nix

24 lines
508 B
Nix

{
programs.rofi = {
enable = true;
# extraConfig = {
# modi = "drun,run,ssh,window";
# theme = "nord";
# };
# extraConfig = builtins.concatStringsSep "\n" [
# "modi = drun,run,ssh,window"
# "theme = nord"
# ];
};
xdg.configFile."rofi/config.rasi".text = ''
configuration {
location: 0;
yoffset: 0;
xoffset: 0;
modi: "drun,run,ssh,window";
theme: "nord";
}
'';
xdg.configFile."rofi/nord.rasi".source = ../configs/rofi/nord.rasi;
}