dotfiles/profiles/user1/configs/laptop.nix

19 lines
249 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{flake, ...}: let
2025-01-08 19:06:14 -06:00
inherit
(flake)
self
;
2024-10-06 15:25:05 -05:00
2024-11-04 02:09:15 -06:00
moduleImports =
map
(module: self.homeModules.${module})
[
2025-01-08 01:05:45 -06:00
"desktop"
2024-11-04 02:09:15 -06:00
"entertainment"
"productionWriting"
"shared"
];
2024-10-06 15:25:05 -05:00
in {
imports = moduleImports;
}