nixos-config/tests/default.nix
Gabriel Arazas 7e91c01de6
tests: update README and attrset
Even if the home-manager test is pretty useless with the new Nix CLI
since it only works on `nix-shell` but could be handy at some point.
2024-06-10 17:09:32 +08:00

9 lines
165 B
Nix

{ pkgs ? import <nixpkgs> { } }:
{
lib = import ./lib { inherit pkgs; };
modules = {
home-manager = import ./modules/home-manager { inherit pkgs; };
};
}