vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / activation / nix-channel.nix
blobd26ea98e56cc5727db7b7961590e805babe1b96f
1 { lib, ... }:
5   name = "activation-nix-channel";
7   meta.maintainers = with lib.maintainers; [ nikstur ];
9   nodes.machine = {
10     nix.channel.enable = true;
11   };
13   testScript = { nodes, ... }: ''
14     machine.start(allow_reboot=True)
16     assert machine.succeed("cat /root/.nix-channels") == "${nodes.machine.system.defaultChannel} nixos\n"
18     nixpkgs_unstable_channel = "https://nixos.org/channels/nixpkgs-unstable nixpkgs"
19     machine.succeed(f"echo '{nixpkgs_unstable_channel}' > /root/.nix-channels")
21     machine.reboot()
23     assert machine.succeed("cat /root/.nix-channels") == f"{nixpkgs_unstable_channel}\n"
24   '';