forked from extern/zaneyos
Fix error with missing nfs options
This commit is contained in:
parent
d1aede43c4
commit
34ff16709b
@ -1,4 +1,4 @@
|
||||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
|
||||
let inherit (import ../../options.nix) localHWClock; in
|
||||
lib.mkIf ("${localHWClock}" == "on") {
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
|
||||
let inherit (import ../../options.nix) nfs; in
|
||||
lib.mkIf ("${nfs}" == "on") {
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
|
||||
let inherit (import ../../options.nix) ntp; in
|
||||
lib.mkIf ("${ntp}" == "on") {
|
||||
|
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user