summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-11-22 17:23:53 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-11-23 08:42:51 +1000
commitdbbd289982ba87aea30453b1e6fb37f33e6bdb72 (patch)
treed61cff494a9a49b8468faec15df34c023449b35a /nixos/modules/services/network-filesystems
parentbbcbaeb54d1d08783771f886e04cf8e8afc82651 (diff)
downloadnixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.gz
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.bz2
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.lz
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.xz
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.tar.zst
nixpkgs-dbbd289982ba87aea30453b1e6fb37f33e6bdb72.zip
nixos/*: fix indentation
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/netatalk.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/network-filesystems/netatalk.nix b/nixos/modules/services/network-filesystems/netatalk.nix
index 7674c8f7fa8..ca9d32311f5 100644
--- a/nixos/modules/services/network-filesystems/netatalk.nix
+++ b/nixos/modules/services/network-filesystems/netatalk.nix
@@ -108,10 +108,10 @@ in
 
       extmap = mkOption {
         type = types.lines;
-	default = "";
-	description = ''
-	  File name extension mappings.
-	  See <literal>man extmap.conf</literal> for more information.
+        default = "";
+        description = ''
+          File name extension mappings.
+          See <literal>man extmap.conf</literal> for more information.
         '';
       };
 
@@ -132,10 +132,10 @@ in
         Type = "forking";
         GuessMainPID = "no";
         PIDFile = "/run/lock/netatalk";
-	ExecStartPre = "${pkgs.coreutils}/bin/mkdir -m 0755 -p /var/lib/netatalk/CNID";
+        ExecStartPre = "${pkgs.coreutils}/bin/mkdir -m 0755 -p /var/lib/netatalk/CNID";
         ExecStart  = "${pkgs.netatalk}/sbin/netatalk -F ${afpConfFile}";
         ExecReload = "${pkgs.coreutils}/bin/kill -HUP  $MAINPID";
-	ExecStop   = "${pkgs.coreutils}/bin/kill -TERM $MAINPID";
+        ExecStop   = "${pkgs.coreutils}/bin/kill -TERM $MAINPID";
         Restart = "always";
         RestartSec = 1;
       };