dd94a849df
Having it there prevented, e.g., `nix-env -qaP` from working in some
cases.
Fixes #509
(cherry picked from commit b8b391ad18
)
15 lines
242 B
Nix
15 lines
242 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;
|
|
}
|