refactor: reworked all maps

This commit is contained in:
Nick 2024-11-04 02:09:15 -06:00
parent b5aa0453e4
commit a114034e0e
20 changed files with 220 additions and 207 deletions

View file

@ -1,13 +1,15 @@
{flake, ...}: let
inherit (flake) self;
moduleNames = [
"desktop"
"entertainment"
"productionWriting"
"shared"
];
moduleImports = map (module: self.homeModules.${module}) moduleNames;
moduleImports =
map
(module: self.homeModules.${module})
[
"desktop"
"entertainment"
"productionWriting"
"shared"
];
in {
imports = moduleImports;
}