1
0
forked from extern/zaneyos

Fix error with missing nfs options

This commit is contained in:
Tyler Kelley 2024-02-06 00:47:13 -06:00
parent d1aede43c4
commit 34ff16709b
4 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{ config, ... }:
{ config, lib, ... }:
let inherit (import ../../options.nix) localHWClock; in
lib.mkIf ("${localHWClock}" == "on") {

View File

@ -1,4 +1,4 @@
{ config, ... }:
{ config, lib, ... }:
let inherit (import ../../options.nix) nfs; in
lib.mkIf ("${nfs}" == "on") {

View File

@ -1,4 +1,4 @@
{ config, ... }:
{ config, lib, ... }:
let inherit (import ../../options.nix) ntp; in
lib.mkIf ("${ntp}" == "on") {

View File

@ -25,7 +25,9 @@
# Optional Settings
intel-bus-id = "PCI:0:2:0";
nvidia-bus-id = "PCI:14:0:0";
nfs = "on";
nfs = "off";
nfsMountPoint = "/mnt/nas";
nfsDevice = "nas:/volume1/nas";
localHWClock = "off";
ntp = "on";