about summary refs log tree commit diff
path: root/release.nix
blob: 52126c8c1095f44b183bfefa69a2d65a8335ca05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
with import <nixpkgs/lib>;

{
  machines = mapAttrs (name: configuration: (import <nixpkgs/nixos> {
    inherit configuration;
  }).system) (import ./network.nix);

  tests = {
    i3 = import ./tests/i3.nix { system = "x86_64-linux"; };
  };
}