dotfiles/profiles/user0/configs/desktop.nix

20 lines
322 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})
[
"desktop"
"entertainment"
2024-11-09 16:44:23 -06:00
"firefox"
2024-11-04 02:09:15 -06:00
"productionArt"
"productionAudio"
"productionVideo"
"productionWriting"
"shared"
];
2024-10-06 15:25:05 -05:00
in {
imports = moduleImports;
}