Files
dotfiles/home/apps/vicinae.nix
uttarayan21 7e9a64023f
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(vicinae): update nixpkgs and adjust keybinding patch for Ctrl+N/P support
2025-12-05 00:01:34 +05:30

17 lines
319 B
Nix

{
pkgs,
inputs,
device,
...
}: {
imports = [inputs.vicinae.homeManagerModules.default];
services.vicinae = {
enable = device.is "ryu";
autoStart = true;
extensions = [];
# package = pkgs.vicinae.overrideAttrs (old: {
# patches = [../../patches/vicinae-ctrl-np.patch];
# });
};
}