1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-09 18:41:06 +01:00

helix: don't ignore extraConfig when no other settings (#7302)

Fix so that you can still generate `programs.helix.extraConfig` without
using `programs.helix.settings`. Useful particularly in the case of
`extraConfig = lib.readFile ./config.toml;`.
This commit is contained in:
crasm 2025-06-22 11:03:39 -04:00 committed by GitHub
parent 8638426397
commit 39b7903eab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 46 additions and 18 deletions

View file

@ -1 +1,4 @@
{ helix-example-settings = ./example-settings.nix; }
{
helix-example-settings = ./example-settings.nix;
helix-only-extraconfig = ./only-extraconfig.nix;
}

View file

@ -0,0 +1,2 @@
[editor]
auto-pairs = false

View file

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