summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-08-07 14:43:58 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-08-07 14:45:39 +0100
commitba930d8679a3945e9a2196f22bda8a1f06972438 (patch)
tree8201688d1a1742131cd27ca753da8305305701b6 /nixos/modules/config
parente879d83e38030fd37787ecbb01d5bddc5678c8ff (diff)
downloadnixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.tar
nixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.tar.gz
nixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.tar.bz2
nixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.tar.lz
nixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.tar.xz
nixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.tar.zst
nixpkgs-ba930d8679a3945e9a2196f22bda8a1f06972438.zip
nixos/modules: remove trailing whitespace
This leads to ci failure otherwise if the file gets changed.
git-blame can ignore whitespace changes.
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/appstream.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/config/appstream.nix b/nixos/modules/config/appstream.nix
index 483ac9c3cd7..a72215c2f56 100644
--- a/nixos/modules/config/appstream.nix
+++ b/nixos/modules/config/appstream.nix
@@ -7,18 +7,18 @@ with lib;
       type = types.bool;
       default = true;
       description = ''
-        Whether to install files to support the 
+        Whether to install files to support the
         <link xlink:href="https://www.freedesktop.org/software/appstream/docs/index.html">AppStream metadata specification</link>.
       '';
     };
   };
 
   config = mkIf config.appstream.enable {
-    environment.pathsToLink = [ 
+    environment.pathsToLink = [
       # per component metadata
-      "/share/metainfo" 
+      "/share/metainfo"
       # legacy path for above
-      "/share/appdata" 
+      "/share/appdata"
     ];
   };