Files

39 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2026-04-04 16:46:30 -04:00
{
2026-04-04 17:56:31 -04:00
flake.modules.homeManager.vicinae = {
# Not using Vicinae's flake because the server fucking seg faults immediately
programs.vicinae = {
enable = true;
systemd = {
2026-04-04 16:46:30 -04:00
enable = true;
2026-04-04 17:56:31 -04:00
autoStart = true;
};
# For configuration option documentation, see: https://github.com/vicinaehq/vicinae/blob/f6222f1e82fe2077ad42f10a6d6837dc61c67fd0/vicinae/assets/config.jsonc
settings = {
escape_key_behavior = "close_window";
close_on_focus_loss = true;
pop_to_root_on_close = true;
favicon_service = "twenty";
telemetry = {
system_info = false;
2026-04-04 16:46:30 -04:00
};
2026-04-04 17:56:31 -04:00
font = {
normal = {
size = 12;
family = "JetBrainsMono Nerd Font";
2026-04-04 16:46:30 -04:00
};
2026-04-04 17:56:31 -04:00
};
theme = {
light = {
name = "noctalia";
icon_theme = "MoreWaita";
2026-04-04 16:46:30 -04:00
};
2026-04-04 17:56:31 -04:00
dark = {
name = "noctalia";
icon_theme = "MoreWaita";
2026-04-04 16:46:30 -04:00
};
};
};
};
2026-04-04 17:56:31 -04:00
};
2026-04-04 16:46:30 -04:00
}