1# This file gets copied into the installation
2
3{
4 # To keep things simple, we'll use an absolute path dependency here.
5 inputs.nixpkgs.url = "@nixpkgs@";
6
7 outputs = { nixpkgs, ... }: {
8
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 };
20}