Move the `homeManagerConfiguration` function into its own file to allow importing without passing an unused `lib` argument.
6 lines
133 B
Nix
6 lines
133 B
Nix
{ lib }:
|
|
{
|
|
inherit ((import ../modules/lib/stdlib-extended.nix lib)) hm;
|
|
|
|
homeManagerConfiguration = import ./eval-config.nix;
|
|
}
|