From e2c546ce4a583d74389dadaad3f1af44860336ac Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 23 Oct 2013 16:00:39 +0200 Subject: [PATCH] nixos-generate-config: Remove unnecessary spaces. The attributes swapDevices and imports add a space character after the eqals sign, which is unnecessary. I know, I'm a pedantic douche bag but it hurts my eyes. Signed-off-by: aszlig --- nixos/modules/installer/tools/nixos-generate-config.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index 03ee0041a5f..a4d22410806 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -345,7 +345,7 @@ mkpath($outDir, 0, 0755); my $fsAndSwap = ""; if (!$noFilesystems) { $fsAndSwap = "\n${fileSystems} "; - $fsAndSwap .= "swapDevices = " . multiLineList(" ", @swapDevices) . ";\n"; + $fsAndSwap .= "swapDevices =" . multiLineList(" ", @swapDevices) . ";\n"; } write_file($fn, <