dotfiles/profiles/user0/configs/laptop.nix
2024-12-24 20:09:31 -06:00

17 lines
274 B
Nix
Executable file

{flake, ...}: let
inherit (flake) self;
moduleImports =
map
(module: self.homeModules.${module})
[
"entertainment"
"firefox"
"laptop"
"productionCode"
"productionWriting"
"shared"
];
in {
imports = moduleImports;
}