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