mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-02-04 08:16:48 +05:30
38 lines
744 B
Nix
38 lines
744 B
Nix
{...}: {
|
|
programs.vicinae = {
|
|
enable = true;
|
|
systemd = {
|
|
enable = true;
|
|
autoStart = true;
|
|
};
|
|
useLayerShell = true;
|
|
|
|
settings = {
|
|
close_on_focus_loss = false;
|
|
consider_preedit = true;
|
|
pop_to_root_on_close = true;
|
|
favicon_service = "twenty";
|
|
search_files_in_root = true;
|
|
font = {
|
|
normal = {
|
|
size = 10;
|
|
family = "JetBrainsMono Nerd Font";
|
|
};
|
|
};
|
|
theme = {
|
|
light = {
|
|
name = "vicinae-light";
|
|
icon_theme = "default";
|
|
};
|
|
dark = {
|
|
name = "vicinae-dark";
|
|
icon_theme = "default";
|
|
};
|
|
};
|
|
launcher_window = {
|
|
opacity = 0.98;
|
|
};
|
|
};
|
|
};
|
|
}
|