1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-18 10:16:54 +00:00

docs: remove unnecessary wrapping

This commit is contained in:
Robert Helgesson 2025-02-05 22:39:38 +01:00
parent c5c78a4183
commit 80ab22332b
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -35,12 +35,10 @@ let
# Make sure the used package is scrubbed to avoid actually
# instantiating derivations.
scrubbedPkgsModule = {
imports = [{
_module.args = {
pkgs = lib.mkForce (scrubDerivations "pkgs" pkgs);
pkgs_i686 = lib.mkForce { };
};
}];
_module.args = {
pkgs = lib.mkForce (scrubDerivations "pkgs" pkgs);
pkgs_i686 = lib.mkForce { };
};
};
dontCheckDefinitions = { _module.check = false; };