vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / config / nix-channel / test.nix
blob4b00cf9db3c474835e1604decca4146eb9367c89
1 # Run:
2 #   nix-build -A nixosTests.nix-channel
3 { lib, testers }:
4 let
5   inherit (lib) fileset;
7   runShellcheck = testers.shellcheck {
8     src = fileset.toSource {
9       root = ./.;
10       fileset = fileset.unions [
11         ./activation-check.sh
12       ];
13     };
14   };
17 lib.recurseIntoAttrs {
18   inherit runShellcheck;