summary refs log tree commit diff
path: root/modules/tasks/filesystems.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-09-14 18:20:50 +0000
committerPeter Simons <simons@cryp.to>2011-09-14 18:20:50 +0000
commiteb6e1310b8774f3aed4c5675d09708f0df6199d3 (patch)
tree3297542b3cda78d38731abb65837f4553cd377a9 /modules/tasks/filesystems.nix
parentf5e8d35f8e76755febf97ca8f62b0700a8b6d20a (diff)
downloadnixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.tar
nixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.tar.gz
nixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.tar.bz2
nixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.tar.lz
nixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.tar.xz
nixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.tar.zst
nixpkgs-eb6e1310b8774f3aed4c5675d09708f0df6199d3.zip
strip trailing whitespace; no functional change
svn path=/nixos/trunk/; revision=29285
Diffstat (limited to 'modules/tasks/filesystems.nix')
-rw-r--r--modules/tasks/filesystems.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/tasks/filesystems.nix b/modules/tasks/filesystems.nix
index 271c0ba0c4e..3ee26bbfc77 100644
--- a/modules/tasks/filesystems.nix
+++ b/modules/tasks/filesystems.nix
@@ -29,7 +29,7 @@ in
           label = "bigdisk";
         }
       ];
-      
+
       description = "
         The file systems to be mounted.  It must include an entry for
         the root directory (<literal>mountPoint = \"/\"</literal>).  Each
@@ -46,10 +46,10 @@ in
         systems that support it, such as ext2/ext3 (see <command>mke2fs
         -L</command>).
 
-        <literal>autocreate</literal> forces <literal>mountPoint</literal> to be created with 
+        <literal>autocreate</literal> forces <literal>mountPoint</literal> to be created with
         <command>mkdir -p</command> .
       ";
-      
+
       type = types.nullOr (types.loaOf types.optionSet);
       apply = x: attrValues x;
 
@@ -114,7 +114,7 @@ in
         };
       };
     };
-  
+
     system.sbin.mount = mkOption {
       internal = true;
       default = pkgs.utillinuxng;
@@ -122,7 +122,7 @@ in
         Package containing mount and umount.
       ";
     };
-    
+
   };
 
 
@@ -134,7 +134,7 @@ in
     environment.systemPackages =
       [ pkgs.ntfs3g pkgs.cifs_utils pkgs.nfsUtils pkgs.mountall ]
       ++ fsPackages;
-    
+
     environment.etc = singleton
       { source = pkgs.writeText "fstab"
           ''
@@ -170,7 +170,7 @@ in
           + optionalString config.services.nfsKernel.client.enable " and started nfs-kernel-statd";
 
         task = true;
-        
+
         script =
           ''
             exec > /dev/console 2>&1
@@ -218,7 +218,7 @@ in
         script =
           ''
             [ -n "$MOUNTPOINT" ] || exit 0
-            
+
             exec < /dev/console > /dev/console 2>&1
 
             cat <<EOF
@@ -237,7 +237,7 @@ in
 
             - Remove the failed filesystem from the system configuration in
               /etc/nixos/configuration.nix and run \`nixos-rebuild switch'.
-            
+
             EOF
 
             ${pkgs.shadow}/bin/login root || false