Hello,
I ended up testing my config file with nfs4 and that part did work fine. I had
earlier errors unrelated to this that threw me off thinking that would not work.
To clarify then, the issue here only seems to be with the mount function in the
(guix build syscalls) module. This results in a
Hello,
I ran into an issue with trying to mount an nfs file-system in an
operating-system config.. I managed to trace it back to being an issue with the
mount syscall.
The following did not work:
(mount "192.168.1.10:/nas-server" "/mnt/nas-client" "nfs" 0 "addr=192.168.
1.10")
and would result
Hello,
An example of this behavior in a guile repl is:
(use-modules (gnu packages))
(specification->package "qemu") ; works
(specification->package "qemu:doc") ; errors and closes the repl
(specification->package+output "qemu:doc") ; works as expected
Thank you!