1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

tests: pass enableLegacyIfd arg

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-06-02 22:10:11 -05:00
parent c7fdb7e90b
commit 2ef52bcab5

View file

@ -1,6 +1,7 @@
{ {
pkgs ? import <nixpkgs> { }, pkgs ? import <nixpkgs> { },
enableBig ? true, enableBig ? true,
enableLegacyIfd ? false,
}: }:
let let
@ -142,6 +143,7 @@ let
]; ];
test.enableBig = enableBig; test.enableBig = enableBig;
test.enableLegacyIfd = enableLegacyIfd;
} }
) )
]; ];