1{ inputs, flake-parts-lib, ... }:
2{
3 flake.homeModules = {
4 wayland = import ./wayland;
5 xdg = import ./xdg;
6 programs = import ./programs;
7 services = import ./services;
8 scripts = import ./scripts;
9 theming = import ./theming;
10 profiles = import ./profiles;
11 allModules = flake-parts-lib.importApply ./all-modules.nix { inherit inputs; };
12 };
13}