13 lines
182 B
Nix
13 lines
182 B
Nix
{ pkgs, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.ostree;
|
|
|
|
testConfig = {
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
ostree
|
|
];
|
|
};
|
|
}
|