feat(apps): add "ida" and enable documentation in NixOS config

This commit is contained in:
uttarayan21
2025-12-06 21:41:50 +05:30
parent 24fab1402b
commit b25638eb9f
4 changed files with 19 additions and 0 deletions

10
home/apps/ida.nix Normal file
View File

@@ -0,0 +1,10 @@
{
pkgs,
lib,
device,
...
}: {
home.packages = lib.optionals (device.is "ryu") [
pkgs.ida-free
];
}