From 7a24f91334ad395d5338bd369ab0d985792ea7e5 Mon Sep 17 00:00:00 2001 From: pagedmov Date: Thu, 19 Feb 2026 18:19:49 -0500 Subject: [PATCH] fixed alias and export renderers writing values in single quotes --- nix/hm-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/hm-module.nix b/nix/hm-module.nix index b4d1e17..748e95e 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -108,8 +108,8 @@ in home.file.".fernrc".text = lib.concatLines [ cfg.settings.extraPreConfig - (lib.concatLines (lib.mapAttrsToList (name: value: "export ${name}='${value}'") cfg.environmentVars)) - (lib.concatLines (lib.mapAttrsToList (name: value: "alias ${name}='${value}'") cfg.aliases)) + (lib.concatLines (lib.mapAttrsToList (name: value: "export ${name}=\"${value}\"") cfg.environmentVars)) + (lib.concatLines (lib.mapAttrsToList (name: value: "alias ${name}=\"${value}\"") cfg.aliases)) (lib.concatLines [ "shopt core.dotglob=${boolToString cfg.settings.dotGlob}" "shopt core.autocd=${boolToString cfg.settings.autocd}"