85b4c430eb
This simplifies installing by (re-)enabling the standard practice of using the main expression as a function returning the package derivation. Convert the src dir path to a string to avoid needlessly copying the whole dir to the nix store.
7 lines
98 B
Nix
7 lines
98 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
import ./home-manager {
|
|
inherit pkgs;
|
|
path = toString ./.;
|
|
}
|