mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
nixos/common: fix options reference (#6473)
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…
This commit is contained in:
parent
b15e9ec676
commit
25870c6600
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue