2.home-manager/tests/modules/programs/rizin/xdg-disabled.nix
rsahwe ba197beccc rizin: cleanup according to feedback
In both prior feature pull requests for this module there was a review
after the pull request got merged, those are addressed here.
2026-03-18 00:02:59 -05:00

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"
'';
}