2.home-manager/tests/modules/programs/rizin/basic-configuration.nix
rsahwe c9507a9aa5 rizin: use xdg.enable and home.preferXdgDirectories
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.
2026-02-20 16:06:11 -06:00

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