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") {