home-manager/default.nix
Robert Helgesson 1484b1d48b
tests: add initial test framework
(cherry picked from commit 6d56abcec1)
2018-12-12 00:56:40 +01:00

19 lines
293 B
Nix

{ pkgs ? import <nixpkgs> {} }:
rec {
home-manager = import ./home-manager {
inherit pkgs;
path = toString ./.;
};
install = import ./home-manager/install.nix {
inherit home-manager pkgs;
};
nixos = import ./nixos;
tests = import ./tests {
inherit pkgs;
};
}