1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-06 09:01:04 +01:00
home-manager/tests/modules/programs/helix/only-extraconfig.nix
2025-06-28 16:28:39 -05:00

15 lines
254 B
Nix

{
programs.helix = {
enable = true;
extraConfig = ''
[editor]
auto-pairs = false
'';
};
nmt.script = ''
assertFileContent \
home-files/.config/helix/config.toml \
${./only-extraconfig-expected.toml}
'';
}