about summary refs log tree commit diff
path: root/release.nix
blob: 4ea7a7f0b534fc9fb84ce45a1a91d13aa37a253a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"; };
  };

  envs = (import ./envs) (import <nixpkgs> {
    config = import ./nixpkgs/config.nix;
  });
}