about summary refs log tree commit diff
path: root/nixos/tests/activation/nix-channel.nix
blob: a01a66ebc1bf6c9efc97fec30c61cb2acdd81759 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, ... }:

{

  name = "activation-nix-channel";

  meta.maintainers = with lib.maintainers; [ nikstur ];

  nodes.machine = {
    nix.channel.enable = true;
  };

  testScript = { nodes, ... }: ''
    assert machine.succeed("cat /root/.nix-channels") == "${nodes.machine.system.defaultChannel} nixos\n"
  '';

}