dotfiles/profiles/user0/configs/desktop.nix
2025-01-08 19:06:14 -06:00

24 lines
375 B
Nix
Executable file

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