dotfiles/profiles/user1/configs/laptop.nix

16 lines
235 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{flake, ...}: let
inherit (flake) self;
2024-11-04 02:09:15 -06:00
moduleImports =
map
(module: self.homeModules.${module})
[
2024-12-24 20:09:31 -06:00
"laptop"
2024-11-04 02:09:15 -06:00
"entertainment"
"productionWriting"
"shared"
];
2024-10-06 15:25:05 -05:00
in {
imports = moduleImports;
}