dotfiles/home/vicinae/default.nix

32 lines
557 B
Nix

{...}: {
programs.vicinae = {
enable = true;
systemd = {
enable = true;
autoStart = true;
};
settings = {
font = {
normal = {
family = "Ubuntu Nerd Font";
size = 8;
};
};
theme = {
dark = {
name = "ayu-dark";
};
};
launcher_window = {
opacity = 0.95;
client_side_decorations = {
enabled = true;
border_width = 0;
rounding = 10;
shadow_size = 0;
};
};
};
};
}