repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
envision-unwrapped: 0-unstable-2024-10-20 -> 1.1.1 (#360652)
[NixPkgs.git]
/
nixos
/
tests
/
installer
/
byAttrNoChannel.nix
blob
03293cd4a0e35da9345a19c1b382d1a34cd0a558
1
# This file gets copied into the installation
2
3
let
4
nixpkgs = "@nixpkgs@";
5
in
6
7
{ evalConfig ? import "${nixpkgs}/nixos/lib/eval-config.nix" }:
8
9
evalConfig {
10
modules = [
11
./configuration.nix
12
( import "${nixpkgs}/nixos/modules/testing/test-instrumentation.nix" )
13
{
14
# Disable nix channels
15
nix.channel.enable = false;
16
}
17
];
18
}