forked from mirrors/nixpkgs
Fixed NFS mount to storage machine
svn path=/nixos/trunk/; revision=25773
This commit is contained in:
parent
aa2e768fe4
commit
e995f317ae
|
@ -31,9 +31,11 @@
|
|||
webserver =
|
||||
{config, pkgs, ...}:
|
||||
{
|
||||
fileSystems = pkgs.lib.mkOverrideTemplate 50 {}
|
||||
fileSystems = pkgs.lib.mkOverride 50
|
||||
[ { mountPoint = "/repos";
|
||||
device = "storage:/repos"; }
|
||||
device = "storage:/repos";
|
||||
fsType = "nfs";
|
||||
options = "bootwait"; }
|
||||
];
|
||||
|
||||
services.portmap.enable = true;
|
||||
|
|
Loading…
Reference in a new issue