fixed alias and export renderers writing values in single quotes
This commit is contained in:
@@ -108,8 +108,8 @@ in
|
|||||||
|
|
||||||
home.file.".fernrc".text = lib.concatLines [
|
home.file.".fernrc".text = lib.concatLines [
|
||||||
cfg.settings.extraPreConfig
|
cfg.settings.extraPreConfig
|
||||||
(lib.concatLines (lib.mapAttrsToList (name: value: "export ${name}='${value}'") cfg.environmentVars))
|
(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: "alias ${name}=\"${value}\"") cfg.aliases))
|
||||||
(lib.concatLines [
|
(lib.concatLines [
|
||||||
"shopt core.dotglob=${boolToString cfg.settings.dotGlob}"
|
"shopt core.dotglob=${boolToString cfg.settings.dotGlob}"
|
||||||
"shopt core.autocd=${boolToString cfg.settings.autocd}"
|
"shopt core.autocd=${boolToString cfg.settings.autocd}"
|
||||||
|
|||||||
Reference in New Issue
Block a user