10 lines
181 B
Nix
10 lines
181 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.ergon-workstation = {
|
|
imports = [ homeModules.workstation-base ];
|
|
};
|
|
}
|