about summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorAaron Vodney <apvodney@gmail.com>2019-06-30 22:05:42 -0400
committerAaron Vodney <apvodney@gmail.com>2019-06-30 22:43:08 -0400
commitcc83a0d0812e2b31acd37315554ca59bca091a2b (patch)
tree5a1cc4386ed104f334d03c597cae4cfc17fddf59 /nixos/modules/services/network-filesystems
parent147422082327a03f2a2d29e062077217a1218559 (diff)
downloadnixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.tar
nixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.tar.gz
nixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.tar.bz2
nixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.tar.lz
nixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.tar.xz
nixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.tar.zst
nixlib-cc83a0d0812e2b31acd37315554ca59bca091a2b.zip
u9fs service: start after network.target
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/u9fs.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/network-filesystems/u9fs.nix b/nixos/modules/services/network-filesystems/u9fs.nix
index 4f37fc2a9e5c..77961b78cadb 100644
--- a/nixos/modules/services/network-filesystems/u9fs.nix
+++ b/nixos/modules/services/network-filesystems/u9fs.nix
@@ -55,6 +55,7 @@ in
       sockets.u9fs = {
         description = "U9fs Listening Socket";
         wantedBy = [ "sockets.target" ];
+        after = [ "network.target" ];
         inherit (cfg) listenStreams;
         socketConfig.Accept = "yes";
       };