Add support for nfs mounts
This commit is contained in:
parent
b59764a335
commit
6e67b13b5b
|
@ -13,6 +13,8 @@
|
|||
];
|
||||
|
||||
# Bootloader.
|
||||
boot.supportedFilesystems = [ "nfs" ];
|
||||
boot.kernelModules = [ "nfs" ];
|
||||
# Disable PSR according to
|
||||
# https://bbs.archlinux.org/viewtopic.php?pid=2191514#p2191514
|
||||
boot.kernelParams = [
|
||||
|
@ -103,6 +105,9 @@
|
|||
(pkgs.writeTextDir "share/cups/model/Brother_HL-L8250CDN.ppd" (builtins.readFile ./Brother_HL-L8250CDN.ppd))
|
||||
];
|
||||
|
||||
# Enable rpcbind for nfs mounting
|
||||
services.rpcbind.enable = true;
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
# You can disable this if you're only using the Wayland session.
|
||||
services.xserver.enable = true;
|
||||
|
@ -185,6 +190,7 @@
|
|||
mosh
|
||||
mumble
|
||||
ndisc6
|
||||
nfs-utils
|
||||
neovim
|
||||
om4
|
||||
poetry
|
||||
|
|
Loading…
Reference in New Issue