vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / installer / flake.nix
blob4bbef44e34fc9fb5bb41d16b9c4a281999cd297d
1 # This file gets copied into the installation
4   # To keep things simple, we'll use an absolute path dependency here.
5   inputs.nixpkgs.url = "@nixpkgs@";
7   outputs = { nixpkgs, ... }: {
9     nixosConfigurations.xyz = nixpkgs.lib.nixosSystem {
10       modules = [
11         ./configuration.nix
12         ( nixpkgs + "/nixos/modules/testing/test-instrumentation.nix" )
13         {
14           # We don't need nix-channel anymore
15           nix.channel.enable = false;
16         }
17       ];
18     };
19   };