In both prior feature pull requests for this module there was a review after the pull request got merged, those are addressed here.
15 lines
221 B
Nix
15 lines
221 B
Nix
{
|
|
xdg.enable = false;
|
|
|
|
programs.rizin = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
e asm.bytes=true
|
|
e asm.bytes.space=true
|
|
'';
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/.rizinrc"
|
|
'';
|
|
}
|