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 {
12 ( nixpkgs + "/nixos/modules/testing/test-instrumentation.nix" )
14 # We don't need nix-channel anymore
15 nix.channel.enable = false;