summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-07-25 23:22:54 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-07-28 00:12:55 +0300
commit96190535e526bc1f7b8975d9f6f2f6493060203f (patch)
tree035be138fdceaef8294f7136a88b496ddf101050 /nixos/modules/services/network-filesystems
parent28e11a0b6ba740aedcc8be27ff8ef334d187bd37 (diff)
downloadnixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.tar
nixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.tar.gz
nixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.tar.bz2
nixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.tar.lz
nixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.tar.xz
nixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.tar.zst
nixlib-96190535e526bc1f7b8975d9f6f2f6493060203f.zip
Revert "nixos: rename system.{stateVersion,defaultChannel} -> system.nixos.\1"
This reverts commit 095fe5b43def40279a243e663c662b02caac5318.

Pointless renames considered harmful. All they do is force people to
spend extra work updating their configs for no benefit, and hindering
the ability to switch between unstable and stable versions of NixOS.

Like, what was the value of having the "nixos." there? I mean, by
definition anything in a NixOS module has something to do with NixOS...
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/ipfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/network-filesystems/ipfs.nix b/nixos/modules/services/network-filesystems/ipfs.nix
index 21b664e5b2f9..412d57b27b82 100644
--- a/nixos/modules/services/network-filesystems/ipfs.nix
+++ b/nixos/modules/services/network-filesystems/ipfs.nix
@@ -14,7 +14,7 @@ let
     (optionalString (cfg.defaultMode == "norouting") "--routing=none")
   ] ++ cfg.extraFlags);
 
-  defaultDataDir = if versionAtLeast config.system.nixos.stateVersion "17.09" then
+  defaultDataDir = if versionAtLeast config.system.stateVersion "17.09" then
     "/var/lib/ipfs" else
     "/var/lib/ipfs/.ipfs";