Skip to content

Instantly share code, notes, and snippets.

@lucabrunox
Last active August 29, 2015 14:05
Show Gist options
  • Save lucabrunox/8b51a24519a4ca42f660 to your computer and use it in GitHub Desktop.
Save lucabrunox/8b51a24519a4ca42f660 to your computer and use it in GitHub Desktop.
{ nixpkgs }:
let
combined = import "${nixpkgs}/nixos/release-combined.nix" { inherit nixpkgs; supportedSystems = [ "x86_64-linux" ]; };
tests = combined.nixos.tests;
peek = x: x.x86_64-linux;
in
{
simple = peek tests.simple;
openssh = peek tests.openssh;
gnome3_12 = import "${nixpkgs}/nixos/tests/gnome3_12.nix" {};
#login = peek tests.login;
udisks2 = peek tests.udisks2;
misc = peek tests.misc;
firewall = peek tests.firewall;
#installer.grub1 = peek tests.installer.grub1;
#installer.lvm = peek tests.installer.lvm;
#installer.separateBoot = peek tests.installer.separateBoot;
#installer.simple = peek tests.installer.simple;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment