mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00: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"))
|
||
|
'';
|
||
|
}
|