feat(ryu): added vicinae

This commit is contained in:
uttarayan21
2025-12-01 20:13:39 +05:30
parent 1c8f908375
commit 19ee636814
6 changed files with 56 additions and 6 deletions

View File

@@ -39,5 +39,6 @@ lib.optionalAttrs device.hasGui {
./zathura.nix
./zed.nix
./zen.nix
./vicinae.nix
];
}

8
home/apps/vicinae.nix Normal file
View File

@@ -0,0 +1,8 @@
{inputs, ...}: {
imports = [inputs.vicinae.homeManagerModules.default];
services.vicinae = {
enable = true;
autoStart = true;
extensions = [];
};
}