mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-06 09:01:04 +01:00
15 lines
254 B
Nix
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}
|
|
'';
|
|
}
|