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