This adds a settings option to the rizin module, which allows configuring rizin with the e command. All other configuration currently still requires extraConfig.
13 lines
199 B
Nix
13 lines
199 B
Nix
{
|
|
programs.rizin = {
|
|
enable = true;
|
|
settings = {
|
|
"asm.bytes" = true;
|
|
"asm.bytes.space" = true;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/.rizinrc"
|
|
'';
|
|
}
|