dotfiles/profiles/user0/configs/desktop.nix
2025-01-08 01:05:45 -06:00

21 lines
362 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;
}