1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 17:01:10 +03:00
nixpkgs/nixos/tests/installer/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
519 B
Nix
Raw Normal View History

# 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;
}
];
};
};
}