|
{
|
|
inputs,
|
|
pkgs,
|
|
extraSpecialArgs,
|
|
modules ? [],
|
|
...
|
|
}:
|
|
inputs.home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs extraSpecialArgs;
|
|
modules =
|
|
[
|
|
../../modules/home-manager/base.nix
|
|
../../modules/home-manager/shell.nix
|
|
../../modules/home-manager/desktop.nix
|
|
]
|
|
++ modules;
|
|
}
|