mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
15 lines
230 B
Nix
15 lines
230 B
Nix
|
{ ... }: {
|
||
|
programs.yazi = {
|
||
|
enable = true;
|
||
|
|
||
|
initLua = builtins.readFile ./init.lua;
|
||
|
};
|
||
|
|
||
|
test.stubs.yazi = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent home-files/.config/yazi/init.lua \
|
||
|
${./init.lua}
|
||
|
'';
|
||
|
}
|