dotfiles/profiles/user0/configs/laptop.nix

21 lines
288 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})
[
"entertainment"
2024-11-09 16:44:23 -06:00
"firefox"
2025-01-08 01:05:45 -06:00
"desktop"
2024-11-20 15:46:18 -06:00
"productionCode"
2024-11-04 02:09:15 -06:00
"productionWriting"
"shared"
];
2024-10-06 15:25:05 -05:00
in {
imports = moduleImports;
}