1484b1d48b
(cherry picked from commit 6d56abcec1
)
19 lines
293 B
Nix
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;
|
|
};
|
|
}
|