Martin Berg Alstad f60462a770
🧹 Organizing
Moved code to separate files.

Rofi config in home-manager.

Moved home.nix to /home.

Scripts to format and rebuild
2024-12-29 00:34:39 +01:00

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;
};
};
}