0eaa97ffad
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
12 lines
187 B
Nix
12 lines
187 B
Nix
{ pkgs, lib, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.ostree;
|
|
|
|
testConfig = {
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
ostree
|
|
];
|
|
};
|
|
}
|