From 551aeea2fa1f5611dfb8415981cf417c6a39f7a8 Mon Sep 17 00:00:00 2001 From: Culis Gaspard Date: Mon, 16 Sep 2024 14:59:57 +0200 Subject: [PATCH] helix -> nix: Copy config using home manager --- editor/helix/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/editor/helix/default.nix b/editor/helix/default.nix index 01d61c9..5faf18e 100644 --- a/editor/helix/default.nix +++ b/editor/helix/default.nix @@ -5,4 +5,9 @@ home.packages =[ pkgs.helix ]; + + home.file = { + ".config/helix/config.toml".source = ./config.toml; + ".config/helix/languages.toml".source = ./languages.toml; + }; }