Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
491 B
Nix
20 lines
491 B
Nix
# This file gets copied into the installation
|
|
|
|
{
|
|
# To keep things simple, we'll use an absolute path dependency here.
|
|
inputs.nixpkgs.url = "@nixpkgs@";
|
|
|
|
outputs = { nixpkgs, ... }: {
|
|
|
|
nixosConfigurations.xyz = nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
./configuration.nix
|
|
( nixpkgs + "/nixos/modules/testing/test-instrumentation.nix" )
|
|
{
|
|
# We don't need nix-channel anymore
|
|
nix.channel.enable = false;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|