nix-config/modules/hosts/home/eve/default.nix

11 lines
208 B
Nix

{config, ...}: let
hm = config.flake.homeModules;
in {
flake.homeModules.eveConfiguration = {...}: {
imports = [
hm.eveBaseConfiguration
hm.eveGnomeconf
hm.evePackages
];
};
}