2021-03-20 20:46:56 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-11-23 15:22:00 +00:00
|
|
|
{ depot, ... }@args:
|
|
|
|
let
|
|
|
|
cfg = configName: configPath: { ... }: {
|
|
|
|
_module.args = args // {
|
|
|
|
inherit configName;
|
|
|
|
};
|
|
|
|
imports = [ configPath ];
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
base = cfg "base" nixos/lib/home-manager/common.nix;
|
|
|
|
client = cfg "client" nixos/lib/home-manager/client.nix;
|
|
|
|
}
|