1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-20 13:27:29 +02:00
home-manager/tests/modules/programs/yazi/init-lua-string.nix

15 lines
230 B
Nix
Raw Normal View History

{ ... }: {
programs.yazi = {
enable = true;
initLua = builtins.readFile ./init.lua;
};
test.stubs.yazi = { };
nmt.script = ''
assertFileContent home-files/.config/yazi/init.lua \
${./init.lua}
'';
}