Moved code to separate files. Rofi config in home-manager. Moved home.nix to /home. Scripts to format and rebuild
25 lines
579 B
Nix
25 lines
579 B
Nix
# App runner
|
|
{ ... }:
|
|
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
# TODO get theme to work
|
|
# theme = lib.mkDefault ./catppuccin-mocha.rasi;
|
|
extraConfig = {
|
|
modi = "run,drun,window";
|
|
icon-theme = "Oranchelo";
|
|
show-icons = true;
|
|
terminal = "kitty";
|
|
drun-display-format = "{icon} {name}";
|
|
disable-history = false;
|
|
hide-scrollbar = true;
|
|
display-drun = " Apps ";
|
|
display-run = " Run ";
|
|
display-window = " Window";
|
|
display-Network = " Network";
|
|
sidebar-mode = true;
|
|
};
|
|
};
|
|
}
|