From 25870c6600660c93c5aa10f0f328a5eecd60150b Mon Sep 17 00:00:00 2001 From: Emily Date: Mon, 17 Feb 2025 00:56:49 +0000 Subject: [PATCH] nixos/common: fix `options` reference (#6473) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was resolving to `lib.options.nix.enable.visible or true`, which is always `true`, and therefore using `nix.enable` where it shouldn’t be used. Oops… --- nixos/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/common.nix b/nixos/common.nix index d7343fbc4..ddf9a9359 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -1,7 +1,7 @@ # This module is the common base for the NixOS and nix-darwin modules. # For OS-specific configuration, please edit nixos/default.nix or nix-darwin/default.nix instead. -{ config, lib, pkgs, ... }: +{ options, config, lib, pkgs, ... }: with lib;