dotfiles/profiles/user1/configs/laptop.nix

14 lines
243 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{flake, ...}: let
inherit (flake) self;
moduleNames = [
2024-11-03 17:52:34 -06:00
"desktop"
2024-10-06 15:25:05 -05:00
"entertainment"
"productionWriting"
2024-11-03 17:52:34 -06:00
"shared"
2024-10-06 15:25:05 -05:00
];
moduleImports = map (module: self.homeModules.${module}) moduleNames;
in {
imports = moduleImports;
}