mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
17 lines
292 B
Nix
17 lines
292 B
Nix
![]() |
{flake, ...}: let
|
||
|
inherit (flake) self;
|
||
|
moduleNames = [
|
||
|
"commandLine"
|
||
|
"entertainment"
|
||
|
"extras"
|
||
|
"firefoxHM"
|
||
|
"internet"
|
||
|
"privacy"
|
||
|
"productionWriting"
|
||
|
];
|
||
|
|
||
|
moduleImports = map (module: self.homeModules.${module}) moduleNames;
|
||
|
in {
|
||
|
imports = moduleImports;
|
||
|
}
|