dotfiles/profiles/user0/configs/desktop.nix
2024-11-09 16:44:23 -06:00

19 lines
322 B
Nix
Executable file

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