mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
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 New Issue
Block a user