rizin reads configuration from both $HOME/.rizinrc and from $XDG_CONFIG_HOME/rizin/rizinrc and the module now uses the relevant options for choosing between them.
13 lines
198 B
Nix
13 lines
198 B
Nix
{
|
|
programs.rizin = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
e asm.bytes=true
|
|
e asm.bytes.space=true
|
|
'';
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/.rizinrc"
|
|
'';
|
|
}
|