2.home-manager/tests/modules/programs/rizin/settings-configuration.nix
rsahwe b96418f81b rizin: add settings option
This adds a settings option to the rizin module,
which allows configuring rizin with the e command.
All other configuration currently still requires extraConfig.
2026-02-26 21:26:20 -06:00

13 lines
199 B
Nix

{
programs.rizin = {
enable = true;
settings = {
"asm.bytes" = true;
"asm.bytes.space" = true;
};
};
nmt.script = ''
assertFileExists "home-files/.rizinrc"
'';
}