14 lines
234 B
Nix
14 lines
234 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.personal-productivity = {
|
|
imports = [
|
|
homeModules.bitwarden
|
|
homeModules.email
|
|
homeModules.pim
|
|
];
|
|
};
|
|
}
|