mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 17:54:53 +01:00
17 lines
248 B
Nix
17 lines
248 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
|
|
name = "activation-nix-channel";
|
|
|
|
meta.maintainers = with lib.maintainers; [ nikstur ];
|
|
|
|
nodes.machine = {
|
|
nix.channel.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
print(machine.succeed("cat /root/.nix-channels"))
|
|
'';
|
|
}
|