feat(vicinae): setup extensions

This commit is contained in:
tux
2026-02-17 19:18:20 +05:30
parent ea718e56c6
commit 981a986139
4 changed files with 102 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
{...}: {
{
pkgs,
config,
...
}: {
programs.vicinae = {
enable = true;
systemd = {
@@ -7,6 +11,18 @@
};
useLayerShell = true;
extensions = with pkgs.vicinae-extensions; [
bluetooth
nix
ssh
awww-switcher
process-manager
pulseaudio
wifi-commander
port-killer
silverbullet
];
settings = {
close_on_focus_loss = false;
consider_preedit = true;
@@ -32,6 +48,21 @@
launcher_window = {
opacity = 0.98;
};
providers = {
"@samlinville/store.raycast.tailscale" = {
"preferences" = {
"tailscalePath" = "${pkgs.tailscale}/bin/tailscale";
};
};
"@sovereign/store.vicinae.awww-switcher" = {
"preferences" = {
"transitionDuration" = "1";
"transitionType" = "center";
"wallpaperPath" = "/home/tux/Wallpapers/";
};
};
};
};
};
}