mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-18 02:55:12 -05:00
22 lines
431 B
Nix
Executable file
22 lines
431 B
Nix
Executable file
{flake, ...}: let
|
|
inherit (flake) self;
|
|
moduleNames = [
|
|
"commandLine"
|
|
"entertainment"
|
|
"extras"
|
|
"fileManagement"
|
|
"internet"
|
|
"internetExtras"
|
|
"productionArt"
|
|
"productionArtExtras"
|
|
"productionAudio"
|
|
"productionCode"
|
|
"productionVideo"
|
|
"productionWriting"
|
|
"wpsOffice"
|
|
];
|
|
|
|
moduleImports = map (module: self.homeModules.${module}) moduleNames;
|
|
in {
|
|
imports = moduleImports;
|
|
}
|