summary refs log tree commit diff
path: root/modules/system/boot/systemd.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-06-18 23:30:26 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-06-18 23:30:26 -0400
commitc73d642db24bf6fe91d6c23333461f478a9b2d46 (patch)
tree22f82cbd756e3b826b604c62550426469bd357dd /modules/system/boot/systemd.nix
parent13c690b7213ef6385648d126df9aaf487d9774ae (diff)
downloadnixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.tar
nixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.tar.gz
nixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.tar.bz2
nixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.tar.lz
nixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.tar.xz
nixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.tar.zst
nixpkgs-c73d642db24bf6fe91d6c23333461f478a9b2d46.zip
Don't put quotes around environment values
Diffstat (limited to 'modules/system/boot/systemd.nix')
-rw-r--r--modules/system/boot/systemd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/boot/systemd.nix b/modules/system/boot/systemd.nix
index f41e471cb1b..652f9763024 100644
--- a/modules/system/boot/systemd.nix
+++ b/modules/system/boot/systemd.nix
@@ -248,7 +248,7 @@ let
 
           [Service]
           Environment=PATH=${def.path}
-          ${concatMapStrings (n: "Environment=${n}=\"${getAttr n def.environment}\"\n") (attrNames def.environment)}
+          ${concatMapStrings (n: "Environment=${n}=${getAttr n def.environment}\n") (attrNames def.environment)}
           
           ${optionalString (def.preStart != "") ''
             ExecStartPre=${pkgs.writeScript "${name}-prestart.sh" ''