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