11 lines
208 B
Nix
11 lines
208 B
Nix
{config, ...}: let
|
|
hm = config.flake.homeModules;
|
|
in {
|
|
flake.homeModules.eveConfiguration = {...}: {
|
|
imports = [
|
|
hm.eveBaseConfiguration
|
|
hm.eveGnomeconf
|
|
hm.evePackages
|
|
];
|
|
};
|
|
}
|