mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-06-21 12:32:51 +02:00
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
|
let inherit (import ../../options.nix) localHWClock; in
|
||||||
lib.mkIf ("${localHWClock}" == "on") {
|
lib.mkIf ("${localHWClock}" == "on") {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ config, ... }:
|
{ config, lib, ... }:
|
||||||
|
|
||||||
let inherit (import ../../options.nix) nfs; in
|
let inherit (import ../../options.nix) nfs; in
|
||||||
lib.mkIf ("${nfs}" == "on") {
|
lib.mkIf ("${nfs}" == "on") {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ config, ... }:
|
{ config, lib, ... }:
|
||||||
|
|
||||||
let inherit (import ../../options.nix) ntp; in
|
let inherit (import ../../options.nix) ntp; in
|
||||||
lib.mkIf ("${ntp}" == "on") {
|
lib.mkIf ("${ntp}" == "on") {
|
||||||
|
@ -25,7 +25,9 @@
|
|||||||
# Optional Settings
|
# Optional Settings
|
||||||
intel-bus-id = "PCI:0:2:0";
|
intel-bus-id = "PCI:0:2:0";
|
||||||
nvidia-bus-id = "PCI:14:0:0";
|
nvidia-bus-id = "PCI:14:0:0";
|
||||||
nfs = "on";
|
nfs = "off";
|
||||||
|
nfsMountPoint = "/mnt/nas";
|
||||||
|
nfsDevice = "nas:/volume1/nas";
|
||||||
localHWClock = "off";
|
localHWClock = "off";
|
||||||
ntp = "on";
|
ntp = "on";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user