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 =
8 { nixpkgs, ... }:
9 {
10
11 nixosConfigurations.xyz = nixpkgs.lib.nixosSystem {
12 modules = [
13 ./configuration.nix
14 (nixpkgs + "/nixos/modules/testing/test-instrumentation.nix")
15 {
16 # We don't need nix-channel anymore
17 nix.channel.enable = false;
18 }
19 ];
20 };
21 };
22}