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>
(cherry picked from commit f8008b5602)
This commit is contained in:
Austin Horstman 2025-06-02 22:10:11 -05:00
parent d457fa3c76
commit f7cf1c59a2

View file

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