25 lines
490 B
Nix
Executable File
25 lines
490 B
Nix
Executable File
{ config, libs, pkgs, ... }:
|
|
|
|
{
|
|
|
|
# Catppuccin theme
|
|
home.file.".config/rofi/catppuccin-mocha.rasi".text = builtins.readFile ./catppuccin-mocha.rasi;
|
|
home.file.".config/rofi/catppuccin-default.rasi".text = builtins.readFile ./catppuccin-default.rasi;
|
|
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi;
|
|
modes = [
|
|
"drun"
|
|
"run"
|
|
"window"
|
|
"ssh"
|
|
];
|
|
extraConfig = {
|
|
import = "catppuccin-mocha";
|
|
show-icons = false;
|
|
};
|
|
};
|
|
|
|
}
|