f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
12 lines
182 B
Nix
12 lines
182 B
Nix
{ pkgs, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.ostree;
|
|
|
|
testConfig = {
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
ostree
|
|
];
|
|
};
|
|
}
|