1{ 2 config, 3 inputs, 4 ... 5}: 6{ 7 home-manager = { 8 useGlobalPkgs = true; 9 useUserPackages = true; 10 verbose = true; 11 12 sharedModules = [ 13 inputs.catppuccin.homeModules.catppuccin 14 ]; 15 16 extraSpecialArgs = { 17 inherit (config.gensokyo) traits; 18 }; 19 }; 20}